|
@@ -77,7 +77,8 @@ a {
|
|
|
|
|
|
.sticky-post {
|
|
|
text-transform: uppercase;
|
|
|
- font-family: #{map-deep-get($config-global, "font", "family", "secondary")};
|
|
|
+ font-family: #{map-deep-get($config-global, "font", "family", "secondary")}; // For browsers without support for CSS custom properties.
|
|
|
+ font-family: var( --font-base, #{map-deep-get($config-global, "font", "family", "secondary")} );
|
|
|
}
|
|
|
|
|
|
#main .page-header {
|
|
@@ -86,7 +87,8 @@ a {
|
|
|
|
|
|
.page-title {
|
|
|
font-size: #{map-deep-get($config-global, "font", "size", "base")};
|
|
|
- font-family: #{map-deep-get($config-global, "font", "family", "secondary")};
|
|
|
+ font-family: #{map-deep-get($config-global, "font", "family", "secondary")}; // For browsers without support for CSS custom properties.
|
|
|
+ font-family: var( --font-base, #{map-deep-get($config-global, "font", "family", "secondary")} );
|
|
|
font-weight: 500;
|
|
|
text-transform: uppercase;
|
|
|
line-height: 1;
|