1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-23 20:01:08 +00:00
Files
privacyguides.org/assets/css/app.scss

38 lines
746 B
SCSS
Raw Normal View History

2020-04-28 16:09:22 -05:00
---
---
2020-05-11 22:59:21 -05:00
$theme-colors: (
"primary": #FFD06F,
"secondary": #28323F
);
$body-color: #28323F;
2020-05-12 00:30:23 -05:00
$link-color: #C98806;
2020-05-11 22:59:21 -05: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 00:30:23 -05:00
h1, h2, h3, h4 {
font-family: "Bagnard", serif;
2020-05-11 22:59:21 -05:00
font-weight: 700;
}
2020-04-28 16:09:22 -05:00
// import /_sass/bootstrap.scss
@import "bootstrap";
2020-05-12 11:15:32 -05:00
.post-info, .post-title {
background-color: theme-color("secondary");
color: theme-color("light");
display: inline;
padding: $spacer;
/* Needs prefixing */
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}