14 lines
287 B
SCSS
14 lines
287 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
$font-primary: "Lora", serif;
|
|
$font-secondary: "Lora", serif;
|
|
$font-heading: "Wood Stamp", sans-serif;
|
|
|
|
@mixin font-heading-upper {
|
|
font-family: $font-heading;
|
|
text-transform: uppercase;
|
|
}
|