website/assets/import/main.scss

60 lines
803 B
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
* {
box-sizing: border-box;
2020-11-03 20:33:16 +01:00
scrollbar-color: $red $bg60;
scrollbar-width: thin;
2020-10-09 10:00:12 +02:00
&::-webkit-scrollbar {
2020-11-03 20:33:16 +01:00
background: $bg60;
2020-10-09 10:00:12 +02:00
width: 6px;
}
&::-webkit-scrollbar-thumb {
2020-11-03 20:33:16 +01:00
background: $red;
2020-10-09 10:00:12 +02:00
}
}
html {
overflow-x: hidden;
overflow-y: scroll;
}
2020-09-14 16:24:02 +02:00
body {
2020-11-03 20:33:16 +01:00
background: $bg40;
color: $white;
2020-09-14 16:24:02 +02:00
display: grid;
2020-10-09 10:00:12 +02:00
font-family: 'Lucida Console', monospace;
line-height: 1.8;
margin: 0;
2020-09-14 16:24:02 +02:00
}
a {
2020-11-03 20:33:16 +01:00
color: $red;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
2020-10-05 09:57:10 +02:00
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.3em;
}
h3 {
font-size: 1.1em;
}
h4 {
font-size: .9em;
}
hr {
2020-11-12 16:31:56 +01:00
border-color: $bg60;
2020-11-03 20:33:16 +01:00
color: $bg60;
2020-11-12 09:12:55 +01:00
margin: 60px 0;
2020-10-05 09:57:10 +02:00
}
2020-09-14 16:24:02 +02:00
.container {
margin: 0 auto;
max-width: 1140px;
width: calc(100% - 40px);
2020-09-14 16:24:02 +02:00
}
2020-09-21 10:59:52 +02:00
main {
width: 100vw;
2020-11-12 09:57:45 +01:00
margin: 60px 0 0 0;
2020-09-21 10:59:52 +02:00
}