You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
74 lines
1005 B
74 lines
1005 B
/* Copyright © 2023 Entreprise SkamCraft */ |
|
|
|
* { |
|
font-family: "Inter", sans-serif; |
|
box-sizing: border-box; |
|
overflow: hidden; |
|
background-color: #272727; |
|
} |
|
|
|
body, |
|
html { |
|
height: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
/* Menu */ |
|
.menu { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
} |
|
|
|
.title-section { |
|
color: white; |
|
display: flex; |
|
align-items: center; |
|
padding-left: 10px; |
|
} |
|
|
|
.title-section img { |
|
max-width: 80px; |
|
max-height: 50px; |
|
} |
|
|
|
.page-change-button { |
|
padding-left: 10px; |
|
} |
|
|
|
button { |
|
margin: 2px; |
|
color: black; |
|
background-color: white; |
|
border: 2px solid white; |
|
border-radius: 10px; |
|
} |
|
|
|
button:hover { |
|
border-color: #eab308; |
|
background-color: #eab308; |
|
transition: all 1s; |
|
} |
|
|
|
main { |
|
flex: 1; |
|
} |
|
|
|
#credits { |
|
background-color: white; |
|
border: 2px solid white; |
|
border-radius: 10px; |
|
color: black; |
|
} |
|
|
|
/* Footer */ |
|
footer { |
|
color: white; |
|
} |
|
|
|
footer p { |
|
display: flex; |
|
justify-content: center; |
|
margin-bottom: 0px; |
|
}
|
|
|