eleventy-riksolo-com/content/style.scss

150 lines
1.9 KiB
SCSS
Raw Normal View History

@use "sass:color";
2025-01-28 03:35:11 +01:00
$grey-vdark: rgb(17, 24, 39);
$grey-dark: color.adjust($grey-vdark, $lightness: 5%);
$grey-medium: color.adjust($grey-vdark, $lightness: 15%);
2025-01-28 03:12:25 +01:00
$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 {
2025-01-28 03:35:11 +01:00
color: $text-default;
background-color: $grey-vdark;
font-family: 'Inconsolata',
monospace;
line-height: 1.3rem;
2025-01-28 03:12:25 +01:00
.container {
max-width: 900px;
margin-left: auto;
margin-right: auto;
2025-01-31 02:18:17 +01:00
display: block;
2025-01-28 03:12:25 +01:00
2025-01-28 03:35:11 +01:00
.blog {
max-width: 700px;
2025-01-28 03:12:25 +01:00
margin-left: auto;
margin-right: auto;
2025-01-28 03:35:11 +01:00
&-header {
&>* {
display: block;
}
2025-01-28 03:12:25 +01:00
2025-01-28 03:35:11 +01:00
a,
a:visited {
color: $primary;
}
2025-01-28 03:12:25 +01:00
2025-01-28 03:35:11 +01:00
small {
margin-top: 0.1em;
margin-bottom: 0.4em;
}
}
&-content {
border-top: 1px solid $grey-medium;
margin-top: 1em;
}
2025-01-28 03:12:25 +01:00
2025-01-28 03:35:11 +01:00
}
2025-01-28 03:12:25 +01:00
}
.nav {
width: 100%;
2025-01-28 03:54:06 +01:00
padding-top: 0.2rem;
padding-bottom: 0.9em;
2025-01-28 03:12:25 +01:00
margin-bottom: 0.6em;
2025-01-28 03:35:11 +01:00
border-bottom: 1px $grey-dark solid;
2025-01-31 02:18:17 +01:00
display: flex;
align-items: center;
flex-wrap: wrap;
2025-01-28 03:12:25 +01:00
2025-01-28 03:54:06 +01:00
a.main-logo {
font-weight: 700;
font-size: 1.2em;
text-decoration: none;
color: $text-default !important;
2025-01-31 02:18:17 +01:00
display: flex;
align-items: center;
margin-right: 1rem;
img {
height: 20px;
width: auto;
margin-right: 0.6rem;
}
2025-01-28 03:54:06 +01:00
}
2025-01-28 03:12:25 +01:00
a,
a:visited {
2025-01-28 03:54:06 +01:00
color: $primary;
2025-01-28 03:12:25 +01:00
}
}
a {
color: $primary;
&:visited {
color: $secondary;
}
}
h1,
h2,
h3,
h4 {
2025-01-28 03:35:11 +01:00
font-weight: 700;
2025-01-31 02:18:17 +01:00
line-height: 1.6rem;
2025-01-28 03:35:11 +01:00
}
h1,
h2 {
2025-01-31 02:18:17 +01:00
margin-bottom: 0.2rem;
margin-top: 0.8rem;
}
h3,
h4,
h5 {
margin-bottom: 0rem;
2025-01-31 02:18:17 +01:00
margin-top: 0.3rem;
}
2025-01-28 03:35:11 +01:00
p {
margin-top: 0.4rem;
margin-bottom: 1.4rem;
2025-01-28 03:35:11 +01:00
}
2025-01-28 03:12:25 +01:00
2025-01-28 03:35:11 +01:00
code,
pre {
background-color: $grey-dark;
padding: 0.1rem 0.4rem;
display: inline-block;
2025-01-28 03:12:25 +01:00
}
2025-01-28 03:54:06 +01:00
}
.d-inline-block {
display: inline-block;
2025-01-31 02:18:17 +01:00
}
img {
max-width: 100%;
&[width][height] {
height: auto;
}
2025-01-28 03:12:25 +01:00
}