25 lines
354 B
SCSS
25 lines
354 B
SCSS
|
* {
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
max-width: 1140px;
|
||
|
margin: 0 auto;
|
||
|
}
|