Skip to content

Commit 88cd2c1

Browse files
committed
add secondaryFont sans-serif
1 parent cebf836 commit 88cd2c1

8 files changed

+15
-15
lines changed

sass/_archives.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
a {
3838

3939
@include themed() {
40-
font-family: t("standardFont");
40+
font-family: t("standardFont"), t(secondaryFont);
4141
}
4242

4343
font-weight: 700;

sass/_event.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ a.event-card {
1515
color: $darkgray;
1616

1717
@include themed() {
18-
font-family: t("standardFont");
18+
font-family: t("standardFont"), t(secondaryFont);
1919
}
2020

2121
border-bottom: 1px solid $lightgray;
@@ -31,7 +31,7 @@ a.event-card {
3131
.date {
3232

3333
@include themed() {
34-
font-family: t("standardFont");
34+
font-family: t("standardFont"), t(secondaryFont);
3535
}
3636

3737
font-weight: 700;

sass/_layout.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body {
88
body {
99

1010
@include themed() {
11-
font-family: t("standardFont");
11+
font-family: t("standardFont"), t(secondaryFont);
1212
}
1313
}
1414

@@ -160,7 +160,7 @@ button.filter,
160160
a.eventlist {
161161

162162
@include themed() {
163-
font-family: t("standardFont");
163+
font-family: t("standardFont"), t(secondaryFont);
164164
}
165165

166166
font-weight: 700;

sass/_themes.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$themes: (
2-
default: ("headingFont": "GrueneType", "headingFontBold": "GrueneType", "standardFont": "PTSans"),
3-
contrast: ("headingFont": "GrueneType", "headingFontBold": "GrueneType", "standardFont": "PTSans")
2+
default: ("headingFont": "GrueneType", "headingFontBold": "GrueneType", "standardFont": "PTSans", "secondaryFont": sans-serif),
3+
contrast: ("headingFont": "GrueneType", "headingFontBold": "GrueneType", "standardFont": "PTSans", "secondaryFont": sans-serif)
44
);
55

66
@mixin themed() {

sass/_typography.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ h3,
6969
.has-medium-font-size {
7070

7171
@include themed() {
72-
font-family: t("standardFont");
72+
font-family: t("standardFont"), t(secondaryFont);
7373
}
7474

7575
font-weight: 700;
@@ -89,7 +89,7 @@ h4,
8989
.h4 {
9090

9191
@include themed() {
92-
font-family: t("standardFont");
92+
font-family: t("standardFont"), t(secondaryFont);
9393
}
9494

9595
font-weight: 700;
@@ -100,7 +100,7 @@ h5,
100100
.h5 {
101101

102102
@include themed() {
103-
font-family: t("standardFont");
103+
font-family: t("standardFont"), t(secondaryFont);
104104
}
105105

106106
font-weight: 700;
@@ -111,7 +111,7 @@ h6,
111111
.h6 {
112112

113113
@include themed() {
114-
font-family: t("standardFont");
114+
font-family: t("standardFont"), t(secondaryFont);
115115
}
116116

117117
font-weight: 700;

sass/_widgets.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
&-title {
2626

2727
@include themed() {
28-
font-family: t("standardFont");
28+
font-family: t("standardFont"), t(secondaryFont);
2929
}
3030

3131
font-weight: 700;
@@ -69,7 +69,7 @@
6969
&.wp-block-search__label {
7070

7171
@include themed() {
72-
font-family: t("standardFont");
72+
font-family: t("standardFont"), t(secondaryFont);
7373
}
7474

7575
font-weight: 700;

sass/wp-blocks/button.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
border-radius: 3px;
77

88
@include themed() {
9-
font-family: t("standardFont");
9+
font-family: t("standardFont"), t(secondaryFont);
1010
}
1111

1212
&:hover {

sass/wp-blocks/rss.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
&-title {
1515

1616
@include themed() {
17-
font-family: t("standardFont");
17+
font-family: t("standardFont"), t(secondaryFont);
1818
}
1919

2020
font-weight: 700;

0 commit comments

Comments
 (0)