Files
coopgo/themes/coopgo-theme/assets/sass/coopgo-web-ui-kit/_base.scss
2021-05-31 22:36:54 +02:00

68 lines
832 B
SCSS

@font-face {
font-family: "Manometer";
src: url("/fonts/manometer.woff2") format("woff2"),
url("/fonts/manometer.woff") format("woff");
}
@font-face {
font-family: "Bitter";
font-style: normal;
src: url("/fonts/Bitter-Regular.woff") format("woff");
}
$basefont: Bitter;
$brandfont: Manometer;
body {
font-family: $basefont;
margin: 0;
padding: 0;
}
.brand {
font-family: $brandfont;
}
h1, h2, h3, h4, h5, h6 {
font-family: Manometer;
font-weight: normal;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 1.3em;
}
h3 {
font-size: 1em;
}
h4 {
font-size: 0.8em;
}
p {
font-size: 1em;
}
#content {
margin-top: 3em;
}
.container {
margin: auto;
max-width: 1000px;
}
.cap {
text-transform: uppercase;
}
a {
text-decoration: none;
color: $brandblue;
}