Added start of setting system.

main
BurnyLlama 2023-03-29 10:42:38 +02:00
parent 2d75452ece
commit dc614abeb6
2 changed files with 6 additions and 3 deletions

2
src/_settings.scss Normal file
View File

@ -0,0 +1,2 @@
// $font-body-text: 'Manrope', sans-serif;
$font-body-text: 'Alegreya', serif;

View File

@ -1,20 +1,21 @@
@use "palette";
@use "settings";
p {
font-family: 'Alegreya', serif;
font-family: settings.$font-body-text;
font-size: 1rem;
}
blockquote {
position: relative;
font-family: 'Alegreya', serif;
font-family: settings.$font-body-text;
margin: 2rem 1rem;
padding: 1rem;
background-color: palette.$standout;
box-shadow: .5rem .5rem 0 0 palette.$grey200;
&::before {
font-family: 'Alegreya', serif;
font-family: settings.$font-body-text;
font-size: 2rem;
text-align: center;
content: '"';