eleventy-riksolo-com/content/style.scss

112 lines
1.5 KiB
SCSS

$grey-vdark: rgb(17, 24, 39);
$grey-dark: lighten($grey-vdark, 5);
$grey-medium: lighten($grey-vdark, 15);
$grey-light: #4c566a;
$white-dark: #d8dee9;
$white-light: #eceff4;
$blue: #88c0d0;
$blue-med: #81a1c1;
$blue-dark: #5e81ac;
$text-default: $white-light;
$primary: $blue;
$secondary: $blue-med;
body {
color: $text-default;
background-color: $grey-vdark;
font-family: 'Inconsolata',
monospace;
line-height: 1.3rem;
.container {
max-width: 900px;
margin-left: auto;
margin-right: auto;
.blog {
max-width: 700px;
margin-left: auto;
margin-right: auto;
&-header {
&>* {
display: block;
}
a,
a:visited {
color: $primary;
}
small {
margin-top: 0.1em;
margin-bottom: 0.4em;
}
}
&-content {
border-top: 1px solid $grey-medium;
margin-top: 1em;
}
}
}
.nav {
width: 100%;
padding-top: 0.2rem;
padding-bottom: 0.9em;
margin-bottom: 0.6em;
border-bottom: 1px $grey-dark solid;
a.main-logo {
font-weight: 700;
font-size: 1.2em;
text-decoration: none;
color: $text-default !important;
}
a,
a:visited {
color: $primary;
}
}
a {
color: $primary;
&:visited {
color: $secondary;
}
}
h1,
h2,
h3,
h4 {
margin-bottom: 0rem;
margin-top: 1rem;
font-weight: 700;
}
p {
margin-top: 0.6rem;
margin-bottom: 1.2rem;
}
code,
pre {
background-color: $grey-dark;
padding: 0.1rem 0.4rem;
display: inline-block;
}
}
.d-inline-block {
display: inline-block;
}