Added global app style (fonts/variables/scss)

This commit is contained in:
Alexis
2021-03-03 11:13:07 +01:00
parent db69fe4611
commit 43ce649204
11 changed files with 197 additions and 9 deletions

View File

@@ -0,0 +1,40 @@
@import 'libs/normalize';
@import 'fonts';
@import 'variables';
body {
font-family: $body-font-family;
font-size: $font-size-base;
line-height: 1.2;
color: $white;
background: $black;
}
h1, h2, h3, h4, h5, h6 {
font-family: $heading-font-family;
font-weight: $fw-regular;
}
h1 { font-size: 30px; }
h2 { font-size: 25px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
ul {
&.no-style {
margin: 0;
padding-left: 0;
list-style-type: none;
}
}
a {
&.no-style {
color: inherit;
text-decoration: none;
}
}
hr {
border-color: rgba($white, .2);
}