website/_scss/_base.scss

36 lines
657 B
SCSS
Raw Normal View History

2022-03-04 20:38:16 +00:00
html {
image-rendering: pixelated;
2022-05-10 12:29:51 +00:00
font-size: 1.1em;
font-family: 'Atkinson Hyperlegible', sans-serif;
2022-03-04 20:38:16 +00:00
color: $foreground-color;
background: $background-color;
2022-05-10 12:29:51 +00:00
line-height: 1.50;
background-image: url("assets/stars4.gif");
background-repeat: repeat;
2022-03-05 15:40:51 +00:00
}
2022-05-10 12:45:20 +00:00
@media only screen and (min-width: 600px) {
2022-05-10 12:29:51 +00:00
.center {
background-color: $background-color;
width: 50%;
text-align: center;
margin: auto;
border: 5px solid #96CDFB;
2022-03-04 20:38:16 +00:00
}
2022-05-10 12:45:20 +00:00
}
@media only screen and (max-width: 600px) {
.center {
background-color: $background-color;
text-align: center;
margin: 10px;
border: 5px solid #96CDFB;
}
}
2022-03-04 20:38:16 +00:00
2022-05-10 12:29:51 +00:00
.content {
margin: 5%;
padding: 10px;
text-align: left;
2022-03-04 20:38:16 +00:00
}