2020-04-28 23:09:22 +02:00
|
|
|
---
|
|
|
|
---
|
2021-05-04 04:13:50 +02:00
|
|
|
@import "./node_modules/bootstrap/scss/functions";
|
2021-09-12 00:54:27 +02:00
|
|
|
@import "brand";
|
2021-05-04 04:13:50 +02:00
|
|
|
@import "./node_modules/bootstrap/scss/variables";
|
2020-12-04 09:35:10 +01:00
|
|
|
@import "variables";
|
2020-05-12 05:59:21 +02:00
|
|
|
|
2021-09-13 16:55:26 +02:00
|
|
|
@import "./node_modules/bootstrap/scss/mixins";
|
|
|
|
@import "./node_modules/bootstrap/scss/utilities";
|
|
|
|
|
|
|
|
$all-colors: map-merge-multiple($blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans, $grays);
|
|
|
|
|
|
|
|
$utilities: map-merge(
|
|
|
|
$utilities,
|
|
|
|
(
|
|
|
|
"color": map-merge(
|
|
|
|
map-get($utilities, "color"),
|
|
|
|
(
|
|
|
|
values: map-merge(
|
|
|
|
map-get(map-get($utilities, "color"), "values"),
|
|
|
|
(
|
|
|
|
$all-colors
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$utilities: map-merge(
|
|
|
|
$utilities,
|
|
|
|
(
|
|
|
|
"background-color": map-merge(
|
|
|
|
map-get($utilities, "background-color"),
|
|
|
|
(
|
|
|
|
values: map-merge(
|
|
|
|
map-get(map-get($utilities, "background-color"), "values"),
|
|
|
|
(
|
|
|
|
$all-colors
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-05-12 05:59:21 +02: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-12-04 05:44:27 +01:00
|
|
|
h1, h2, h3:not(.h5), h4 {
|
2020-05-12 07:30:23 +02:00
|
|
|
font-family: "Bagnard", serif;
|
2020-05-12 05:59:21 +02:00
|
|
|
}
|
|
|
|
|
2020-04-28 23:09:22 +02:00
|
|
|
// import /_sass/bootstrap.scss
|
2021-02-22 17:47:35 +01:00
|
|
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
2020-12-04 06:16:00 +01:00
|
|
|
@import "ptio-font";
|
|
|
|
@import "flag-icon";
|
2020-05-12 18:15:32 +02:00
|
|
|
|
2021-01-15 11:22:46 +01:00
|
|
|
.textColor {
|
2021-01-16 06:13:01 +01:00
|
|
|
fill: $dark;
|
|
|
|
}
|
2021-01-15 11:22:46 +01:00
|
|
|
|
2020-05-12 18:15:32 +02:00
|
|
|
.post-info, .post-title {
|
|
|
|
color: theme-color("light");
|
|
|
|
display: inline;
|
|
|
|
padding: $spacer;
|
|
|
|
/* Needs prefixing */
|
|
|
|
-webkit-box-decoration-break: clone;
|
|
|
|
box-decoration-break: clone;
|
|
|
|
}
|
2020-12-04 05:44:27 +01:00
|
|
|
|
2020-12-04 09:35:10 +01:00
|
|
|
@import "custom";
|