website/assets/scss/partials/_main.scss

30 lines
415 B
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
* {
box-sizing: border-box;
}
a {
color: rgb(255, 130, 130);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
background: rgb(40, 40, 60);
color: rgb(240, 240, 255);
margin: 0;
font-family: Monaco, Lucida Console, monospace;
display: grid;
2020-09-21 10:59:52 +02:00
overflow-x: hidden;
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;
}