website/assets/partials/_main.scss

51 lines
716 B
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
* {
box-sizing: border-box;
}
html {
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
scrollbar-width: thin;
overflow-x: hidden;
overflow-y: scroll;
}
2020-09-14 16:24:02 +02:00
body {
background: rgb(40, 40, 60);
2020-10-05 09:57:10 +02:00
color: rgb(245, 245, 255);
2020-09-14 16:24:02 +02:00
display: grid;
font-family: monospace, 'Lucida Console', 'Monaco';
line-height: 1.8;
margin: 0;
2020-09-14 16:24:02 +02:00
}
a {
color: rgb(255, 130, 130);
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 {
color: rgb(60, 60, 90);
margin: 50px 20px;
}
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;
}