Merge branch 'main' of github.com:kevinmidboe/schleppe-lab

This commit is contained in:
2023-07-09 22:42:11 +02:00
11 changed files with 178 additions and 8 deletions

View File

@@ -34,7 +34,7 @@
display: flex;
flex-direction: column;
width: 100%;
max-width: 864px;
max-width: 1064px;
min-height: 100vh;
margin: 0 auto;
padding: var(--spacing-unit);

View File

@@ -12,6 +12,10 @@
src: url("/assets/fonts/FiraCode-Bold.ttf");
}
$text-color: white;
$background-color: #222129;
$brand-color: #fea86a;
:root {
--font-family: "Fira Code", Monaco, Consolas, "Ubuntu Mono", monospace;
--font-size: 16px;
@@ -21,9 +25,9 @@
--spacing-unit: 2.5em;
--text-color: white;
--background-color: #222129;
--brand-color: #fea86a;
--text-color: $text-color;
--background-color: $background-color;
--brand-color: $brand-color;
--border-color: hsla(0, 0%, 100%, 0.1);
}
$base-font-family: "Fira Code", Monaco, Consolas, "Ubuntu Mono", monospace !default;
@@ -34,10 +38,6 @@ $base-line-height: 1.5 !default;
$spacing-unit: 2.5em !default;
$text-color: white !default;
$background-color: #222129 !default;
$brand-color: #fea86a !default;
$grey-color: #828282 !default;
$grey-color-light: lighten($grey-color, 40%) !default;
$grey-color-dark: darken($grey-color, 25%) !default;