60 lines
800 B
SCSS
60 lines
800 B
SCSS
$color-primary: #e1327b;
|
|
$color-secondary: #edcd1a;
|
|
$color-accent: #32eaed;
|
|
$color-bg: #12042d;
|
|
$content-width: 800px;
|
|
|
|
* {
|
|
box-sizing: border-box; /* never gets old */
|
|
}
|
|
|
|
body {
|
|
background-color: $color-bg;
|
|
font-family: sans-serif;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin: 0;
|
|
}
|
|
|
|
footer {
|
|
padding: 20px 0;
|
|
}
|
|
|
|
footer {
|
|
border-top: thin solid $color-primary;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: $color-primary;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
font-weight: 400;
|
|
}
|
|
|
|
a {
|
|
color: $color-primary;
|
|
}
|
|
|
|
nav {
|
|
border-top: thin solid $color-primary;
|
|
border-bottom: thin solid $color-primary;
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0 auto;
|
|
max-width: $content-width;
|
|
|
|
li {
|
|
display: inline-block;
|
|
|
|
a {
|
|
padding: 20px;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|