|
@@ -15,12 +15,15 @@ This theme, like WordPress, is licensed under the GPL.
|
|
|
Use it to make something cool, have fun, and share what you've learned with others.
|
|
|
*/
|
|
|
|
|
|
+
|
|
|
+/* Smooth out the fonts. */
|
|
|
+
|
|
|
body {
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
}
|
|
|
|
|
|
-/* Editor widths */
|
|
|
+/* Set editor widths. */
|
|
|
|
|
|
.wp-block {
|
|
|
max-width: var(--wp--custom--width--default);
|
|
@@ -34,17 +37,17 @@ body {
|
|
|
max-width: inherit;
|
|
|
}
|
|
|
|
|
|
-/* Header spacing adjustments */
|
|
|
+/* Adjust header spacing. */
|
|
|
|
|
|
-.wp-block-site-title {
|
|
|
+.site-header .wp-block-site-title {
|
|
|
margin-bottom: 0.2rem;
|
|
|
}
|
|
|
|
|
|
-.wp-block-site-title a {
|
|
|
+.site-header .wp-block-site-title a {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
|
|
|
-.wp-block-navigation {
|
|
|
+.site-header .wp-block-navigation {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
|
|
@@ -54,4 +57,30 @@ body {
|
|
|
padding-left: var(--wp--custom--margin--horizontal);
|
|
|
padding-right: var(--wp--custom--margin--horizontal);
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+/* Adjust heading letter spacing. */
|
|
|
+
|
|
|
+h1 {
|
|
|
+ letter-spacing: -0.015em;
|
|
|
+}
|
|
|
+
|
|
|
+h2 {
|
|
|
+ letter-spacing: -0.015em;
|
|
|
+}
|
|
|
+
|
|
|
+h3 {
|
|
|
+ letter-spacing: -0.015em;
|
|
|
+}
|
|
|
+
|
|
|
+h4 {
|
|
|
+ letter-spacing: normal;
|
|
|
+}
|
|
|
+
|
|
|
+h5 {
|
|
|
+ letter-spacing: normal;
|
|
|
+}
|
|
|
+
|
|
|
+h6 {
|
|
|
+ letter-spacing: normal;
|
|
|
}
|