|
|
@ -5,7 +5,10 @@ body { |
|
|
|
align-items: center; |
|
|
|
align-items: center; |
|
|
|
height: 100vh; |
|
|
|
height: 100vh; |
|
|
|
margin: 0; |
|
|
|
margin: 0; |
|
|
|
background-color: #f0f0f0; |
|
|
|
background-color: #211000; |
|
|
|
|
|
|
|
background-image: url("./static/bg.jpg"); |
|
|
|
|
|
|
|
background-position: center; |
|
|
|
|
|
|
|
background-repeat: no-repeat; |
|
|
|
} |
|
|
|
} |
|
|
|
.window { |
|
|
|
.window { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
@ -36,9 +39,12 @@ body { |
|
|
|
color: white; |
|
|
|
color: white; |
|
|
|
cursor: pointer; |
|
|
|
cursor: pointer; |
|
|
|
transition: background-color 0.3s; |
|
|
|
transition: background-color 0.3s; |
|
|
|
|
|
|
|
transform: 0.3s; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
.nav button:hover { |
|
|
|
.nav button:hover { |
|
|
|
background-color: #1abc9c; |
|
|
|
background-color: #c2a25e; |
|
|
|
|
|
|
|
transform: scale(1.05) rotate(1deg); |
|
|
|
} |
|
|
|
} |
|
|
|
.content { |
|
|
|
.content { |
|
|
|
width: 75%; |
|
|
|
width: 75%; |
|
|
@ -46,4 +52,15 @@ body { |
|
|
|
border-top-right-radius: 8px; |
|
|
|
border-top-right-radius: 8px; |
|
|
|
border-bottom-right-radius: 8px; |
|
|
|
border-bottom-right-radius: 8px; |
|
|
|
overflow-y: auto; |
|
|
|
overflow-y: auto; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content img { |
|
|
|
|
|
|
|
max-width: 100%; |
|
|
|
|
|
|
|
height: auto; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Move when clicked */ |
|
|
|
|
|
|
|
.nav button:active { |
|
|
|
|
|
|
|
transform: scale(1.2); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|