37 lines
628 B
SCSS
37 lines
628 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
@font-face {
|
|
font-family: PoppinsLatin;
|
|
src: url(/fonts/PoppinsLatin-Regular.otf);
|
|
}
|
|
html {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
}
|
|
body {
|
|
background: rgb(40, 40, 60);
|
|
color: rgb(240, 240, 255);
|
|
margin: 0;
|
|
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
|
display: grid;
|
|
}
|
|
a {
|
|
color: rgb(255, 130, 130);
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.container {
|
|
width: calc(100% - 40px);
|
|
max-width: 1140px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
main {
|
|
width: 100vw;
|
|
}
|