website/assets/partials/_main.scss
2020-10-09 10:00:12 +02:00

57 lines
855 B
SCSS

* {
box-sizing: border-box;
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
scrollbar-width: thin;
&::-webkit-scrollbar {
background: rgb(60, 60, 90);
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: rgb(255, 130, 130);
}
}
html {
overflow-x: hidden;
overflow-y: scroll;
}
body {
background: rgb(40, 40, 60);
color: rgb(245, 245, 255);
display: grid;
font-family: 'Lucida Console', monospace;
line-height: 1.8;
margin: 0;
}
a {
color: rgb(255, 130, 130);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.3em;
}
h3 {
font-size: 1.1em;
}
h4 {
font-size: .9em;
}
hr {
color: rgb(60, 60, 90);
margin: 50px 20px;
}
.container {
margin: 0 auto;
max-width: 1140px;
width: calc(100% - 40px);
}
main {
width: 100vw;
}