initial commit

This commit is contained in:
Johannes Loher 2020-10-29 16:18:38 +01:00
commit 91694af3e9
37 changed files with 5475 additions and 0 deletions

2
scss/utils/_colors.scss Normal file
View file

@ -0,0 +1,2 @@
$c-white: #fff;
$c-black: #000;

16
scss/utils/_mixins.scss Normal file
View file

@ -0,0 +1,16 @@
@mixin element-invisible {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
clip: rect(0 0 0 0);
overflow: hidden;
}
@mixin hide {
display: none;
}

View file

@ -0,0 +1,12 @@
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");
@font-face {
font-family: "Wood Stamp";
font-style: normal;
font-weight: normal;
src: local("Wood Stamp"), url("../fonts/Woodstamp.woff") format("woff");
}
$font-primary: "Lora", sans-serif;
$font-secondary: "Lora", sans-serif;
$font-heading: "Wood Stamp", sans-serif;

View file

@ -0,0 +1,3 @@
$padding-sm: 5px;
$padding-md: 10px;
$padding-lg: 20px;