|
@@ -95,7 +95,8 @@ a {
|
|
|
.site-title:not(:empty) + .site-description:not(:empty):before {
|
|
|
color: map-deep-get($config-global, "color", "foreground", "light");
|
|
|
content: "\2022";
|
|
|
- font-family: Arial, Helvetica, sans-serif;
|
|
|
+ font-family: Arial, Helvetica, sans-serif; // For browsers without CSS custom properties support.
|
|
|
+ font-family: var( --font-headings, 'Arial, Helvetica, sans-serif' );
|
|
|
margin: 0 .25em;
|
|
|
}
|
|
|
}
|
|
@@ -150,7 +151,8 @@ a {
|
|
|
&:not(:first-child):before {
|
|
|
color: map-deep-get($config-global, "color", "foreground", "light");
|
|
|
content: "\2022";
|
|
|
- font-family: Arial, Helvetica, sans-serif;
|
|
|
+ font-family: Arial, Helvetica, sans-serif; // For browsers without CSS custom properties support.
|
|
|
+ font-family: var( --font-headings, Arial, Helvetica, sans-serif );
|
|
|
line-height: 1;
|
|
|
padding-bottom: #{0.5 * map-deep-get($config-global, "spacing", "unit")};
|
|
|
padding-top: #{0.5 * map-deep-get($config-global, "spacing", "unit")};
|
|
@@ -504,8 +506,8 @@ table,
|
|
|
|
|
|
.widget-title,
|
|
|
.widgettitle {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "base")};
|
|
|
- font-family: #{map-deep-get($config-global, "font", "family", "ui")};
|
|
|
+ font-size: #{map-deep-get($config-global, "font", "size", "base")};
|
|
|
+ font-family: #{map-deep-get($config-global, "font", "family", "ui")};
|
|
|
margin-bottom: #{0.5 * map-deep-get($config-global, "spacing", "vertical")};
|
|
|
|
|
|
&:empty {
|
|
@@ -644,7 +646,8 @@ table,
|
|
|
&:not(:first-child):before {
|
|
|
color: map-deep-get($config-global, "color", "border", "dark");
|
|
|
content: "\2022";
|
|
|
- font-family: Arial, Helvetica, sans-serif;
|
|
|
+ font-family: Arial, Helvetica, sans-serif; // For browsers without CSS custom properties support.
|
|
|
+ font-family: var( --font-headings, 'Arial, Helvetica, sans-serif' );
|
|
|
}
|
|
|
}
|
|
|
}
|