privacyguides.org/assets/css/app.scss

36 lines
753 B
SCSS
Raw Normal View History

2020-04-28 17:09:22 -04:00
---
---
2020-05-11 23:59:21 -04:00
$theme-colors: (
2020-05-12 14:10:48 -04:00
"primary": {{ site.colors.primary }},
"secondary": {{ site.colors.secondary }}
2020-05-11 23:59:21 -04:00
);
2020-05-12 14:10:48 -04:00
$body-color: {{ site.colors.secondary }};
$link-color: {{ site.colors.link }};
2020-05-11 23:59:21 -04:00
.container-fullwidth {
margin: 0 auto;
width: 100%;
}
@font-face {
font-family: Bagnard;
src: url("/assets/fonts/Bagnard.woff") format("woff"), url("/assets/fonts/Bagnard.ttf") format("truetype"), url("/assets/fonts/Bagnard.otf") format("opentype");
}
2020-05-12 01:30:23 -04:00
h1, h2, h3, h4 {
font-family: "Bagnard", serif;
2020-05-11 23:59:21 -04:00
}
2020-04-28 17:09:22 -04:00
// import /_sass/bootstrap.scss
@import "bootstrap";
2020-05-12 12:15:32 -04:00
.post-info, .post-title {
color: theme-color("light");
display: inline;
padding: $spacer;
/* Needs prefixing */
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}