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.
95 lines
1.3 KiB
95 lines
1.3 KiB
* { |
|
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-right: 10px; |
|
} |
|
|
|
.page-change-button button { |
|
margin: 2px; |
|
color: black; |
|
background-color: white; |
|
border: 1px solid white; |
|
border-radius: 10px; |
|
} |
|
|
|
.page-change-button button:hover { |
|
border-color: #eab308; |
|
background-color: #eab308; |
|
transition: all 1s; |
|
} |
|
|
|
main { |
|
flex: 1; |
|
} |
|
|
|
/* Footer */ |
|
footer { |
|
color: white; |
|
} |
|
|
|
footer p { |
|
display: flex; |
|
justify-content: center; |
|
margin-bottom: 0px; |
|
} |
|
|
|
/* Canvas system |
|
#canvas-system { |
|
border: 1px solid white; |
|
} |
|
|
|
/* Login modal */ |
|
/* #loginModal { |
|
position: fixed; |
|
top: 50%; |
|
left: 50%; |
|
transform: translate(-50%, -50%); |
|
padding: 20px; |
|
border-radius: 8px; |
|
box-shadow: 0 0 10px black; |
|
z-index: 1000; |
|
|
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: center; |
|
} */ |
|
|
|
/* #loginModal p { |
|
margin-top: -10px; |
|
} |
|
|
|
#loginModal input { |
|
margin-bottom: 10px; |
|
} */
|
|
|