29 lines
614 B
SCSS
29 lines
614 B
SCSS
// Fonts
|
|
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
|
|
|
|
body {
|
|
// Keep websites thin!
|
|
max-width: 800px;
|
|
margin: auto;
|
|
|
|
// Default font
|
|
font-family: "Overlock", sans-serif;
|
|
|
|
// Default background color
|
|
background-color: #f0f0f0;
|
|
|
|
header {
|
|
}
|
|
|
|
main {
|
|
img {
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
}
|