website/assets/partials/_main.scss

39 lines
657 B
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
* {
box-sizing: border-box;
}
@font-face {
font-family: PoppinsLatin;
src: url(/fonts/PoppinsLatin-Regular.otf);
2020-09-14 16:24:02 +02:00
}
html {
scrollbar-width: thin;
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
overflow-x: hidden;
overflow-y: scroll;
}
2020-09-14 16:24:02 +02:00
body {
background: rgb(40, 40, 60);
color: rgb(240, 240, 255);
margin: 0;
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
2020-09-26 17:57:12 +02:00
font-display: block;
2020-09-14 16:24:02 +02:00
display: grid;
}
a {
color: rgb(255, 130, 130);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
2020-09-14 16:24:02 +02:00
.container {
2020-09-21 10:59:52 +02:00
width: calc(100% - 40px);
2020-09-14 16:24:02 +02:00
max-width: 1140px;
margin: 0 auto;
}
2020-09-21 10:59:52 +02:00
main {
width: 100vw;
}