summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/twentynineteen/sass/typography/_typography.scss')
-rw-r--r--themes/twentynineteen/sass/typography/_typography.scss32
1 files changed, 32 insertions, 0 deletions
diff --git a/themes/twentynineteen/sass/typography/_typography.scss b/themes/twentynineteen/sass/typography/_typography.scss
new file mode 100644
index 00000000..055b7a63
--- /dev/null
+++ b/themes/twentynineteen/sass/typography/_typography.scss
@@ -0,0 +1,32 @@
+
+html {
+ font-size: $font__size_base;
+}
+
+body {
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ color: $color__text-main;
+ @include font-family( $font__body );
+ font-weight: 400;
+ font-size: 1em;
+ line-height: $font__line-height-body;
+ margin: 0;
+ text-rendering: optimizeLegibility;
+}
+
+button,
+input,
+select,
+optgroup,
+textarea {
+ color: $color__text-main;
+ @include font-family( $font__body );
+ font-weight: 400;
+ line-height: $font__line-height-body;
+ text-rendering: optimizeLegibility;
+}
+
+@import "headings";
+
+@import "copy";