Opti1337
250174211e
All checks were successful
Gitea Actions Demo / build-and-deploy (push) Successful in 25s
43 lines
705 B
SCSS
43 lines
705 B
SCSS
:root {
|
|
--black: #0a0908ff;
|
|
--chocolate-cosmos: #49111cff;
|
|
--white-smoke: #f2f4f3ff;
|
|
--beaver: #a9927dff;
|
|
--walnut-brown: #5e503fff;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
font-family: "Montserrat", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-style: normal;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
background-color: var(--black);
|
|
color: var(--white-smoke);
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 16px;
|
|
}
|
|
|
|
#__nuxt {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
} |