koptilnya.xyz/assets/styles.scss
Opti1337 b33fe9bb5c
Some checks failed
Gitea Actions Demo / build-and-deploy (push) Failing after 27s
Another deploy test
2024-03-01 12:31:16 +03:00

41 lines
659 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;
}
#__nuxt {
padding: 16px;
width: 100%;
max-width: 800px;
margin-inline: auto;
overflow-y: auto;
}