mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
20 lines
325 B
SCSS
20 lines
325 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: "Quicksand", sans-serif;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: #12121f;
|
|
color: #eee;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |