|
|
|
@ -9,16 +9,16 @@ body { |
|
|
|
|
} |
|
|
|
|
.window { |
|
|
|
|
display: flex; |
|
|
|
|
width: 60%; |
|
|
|
|
height: 60%; |
|
|
|
|
width: 80%; |
|
|
|
|
height: 80%; |
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
|
|
|
|
background-color: white; |
|
|
|
|
background-color: rgb(255, 255, 255); |
|
|
|
|
border-radius: 8px; |
|
|
|
|
} |
|
|
|
|
.nav { |
|
|
|
|
width: 25%; |
|
|
|
|
background-color: #50372c; |
|
|
|
|
color: white; |
|
|
|
|
width: 10%; |
|
|
|
|
background-color: #306cab; |
|
|
|
|
color: rgb(255, 255, 255); |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
align-items: center; |
|
|
|
@ -32,8 +32,8 @@ body { |
|
|
|
|
padding: 10px; |
|
|
|
|
border: none; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
background-color: #7e5b53; |
|
|
|
|
color: white; |
|
|
|
|
background-color: #77e6ea; |
|
|
|
|
color: rgb(0, 0, 0); |
|
|
|
|
cursor: pointer; |
|
|
|
|
transition: background-color 0.3s; |
|
|
|
|
} |
|
|
|
@ -41,9 +41,13 @@ body { |
|
|
|
|
background-color: #1abc9c; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
width: 75%; |
|
|
|
|
width: 90%; |
|
|
|
|
padding: 20px; |
|
|
|
|
border-top-right-radius: 8px; |
|
|
|
|
border-bottom-right-radius: 8px; |
|
|
|
|
overflow-y: auto; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content img { |
|
|
|
|
max-width: 100%; |
|
|
|
|
height: auto; |
|
|
|
|
} |
|
|
|
|