typographical 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb019d36be5124c3d983030b35d5bfd7c60e1b831e9ee1941dea31813c5aea5e
|
4
|
+
data.tar.gz: '090ff04ee422687fd3894ba4f31c6a1625ef48a62eaee9fb62128c2f4fc5ed7a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cb7ea75e86d40bd8de698094dbb27f53c55a5aac460016b4be7badc019c02fedab13ada752da678b04a771950f546026f03c842e1fdc30ab46a4dc841219795
|
7
|
+
data.tar.gz: 7982436fea4adca34e83ec923826ae2d53e354c7cbb93cf9c91fe5829e1d9df9d88096600df61f2a0583b5522ad61cc1165e1578e0d037654a28a09507cc34ea
|
@@ -15,8 +15,10 @@ html {
|
|
15
15
|
font-size: 1rem;
|
16
16
|
overflow-y: scroll;
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
font-size: $base-font-size;
|
19
|
+
|
20
|
+
@media (min-width: 90em) {
|
21
|
+
font-size: 1.15 * $base-font-size;
|
20
22
|
}
|
21
23
|
}
|
22
24
|
|
@@ -29,10 +31,6 @@ body {
|
|
29
31
|
hyphens: auto;
|
30
32
|
}
|
31
33
|
|
32
|
-
body p {
|
33
|
-
font-size: 1.3em;
|
34
|
-
}
|
35
|
-
|
36
34
|
h1,
|
37
35
|
h2,
|
38
36
|
h3,
|
@@ -101,7 +101,7 @@ footer {
|
|
101
101
|
}
|
102
102
|
|
103
103
|
.nav-container ul {
|
104
|
-
font-size: 1.
|
104
|
+
font-size: 1.3em;
|
105
105
|
}
|
106
106
|
|
107
107
|
.nav-container ul a {
|
@@ -109,7 +109,7 @@ footer {
|
|
109
109
|
}
|
110
110
|
|
111
111
|
.share-bar .share-buttons {
|
112
|
-
font-size: 1.
|
112
|
+
font-size: 1.1em;
|
113
113
|
}
|
114
114
|
|
115
115
|
.share-bar .share-buttons .fab {
|
@@ -142,7 +142,7 @@ footer, .share-bar, .nav-container { /* Disable selection of some elements */
|
|
142
142
|
}
|
143
143
|
|
144
144
|
.post blockquote p {
|
145
|
-
font-size: 1.
|
145
|
+
font-size: 1.1em;
|
146
146
|
}
|
147
147
|
|
148
148
|
.post li {
|
@@ -158,3 +158,25 @@ footer, .share-bar, .nav-container { /* Disable selection of some elements */
|
|
158
158
|
letter-spacing: 0.01em;
|
159
159
|
text-transform: lowercase;
|
160
160
|
}
|
161
|
+
|
162
|
+
// for those little screens
|
163
|
+
|
164
|
+
@media (max-width: 37.5em) {
|
165
|
+
html {
|
166
|
+
font-size: 1.1 * $base-font-size;
|
167
|
+
}
|
168
|
+
|
169
|
+
.post-title {
|
170
|
+
font-size: 2.5em;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
// sub-heading adjustments
|
175
|
+
|
176
|
+
.post h2 {
|
177
|
+
font-size: 1.7em;
|
178
|
+
}
|
179
|
+
|
180
|
+
.post h3 {
|
181
|
+
font-size: 1.4em;
|
182
|
+
}
|