blog/_sass/style.scss

39 lines
551 B
SCSS
Raw Normal View History

2021-02-11 15:55:26 +01:00
$color-primary: #e1327b;
2021-02-11 01:38:11 +01:00
$color-secondary: #edcd1a;
$color-accent: #32eaed;
2021-02-11 15:55:26 +01:00
$color-bg: #12042d;
$content-width: 800px;
* {
box-sizing: border-box; /* never gets old */
}
2021-02-11 01:38:11 +01:00
body {
background-color: $color-bg;
2021-02-11 15:55:26 +01:00
font-family: sans-serif;
2021-02-11 01:38:11 +01:00
color: rgba(255, 255, 255, 0.8);
2021-02-11 15:55:26 +01:00
margin: 0;
}
header, footer {
padding: 20px;
}
header {
border-bottom: thin solid $color-primary;
}
footer {
border-top: thin solid $color-primary;
}
h1, h2, h3, h4, h5, h6 {
color: $color-primary;
}
h1 {
max-width: $content-width;
margin: 0 auto;
font-weight: 400;
2021-02-11 01:38:11 +01:00
}