diff options
Diffstat (limited to 'plugins/jetpack/scss/atoms/typography')
-rw-r--r-- | plugins/jetpack/scss/atoms/typography/_functions.scss | 12 | ||||
-rw-r--r-- | plugins/jetpack/scss/atoms/typography/_variables.scss | 31 |
2 files changed, 0 insertions, 43 deletions
diff --git a/plugins/jetpack/scss/atoms/typography/_functions.scss b/plugins/jetpack/scss/atoms/typography/_functions.scss deleted file mode 100644 index 878bc05e..00000000 --- a/plugins/jetpack/scss/atoms/typography/_functions.scss +++ /dev/null @@ -1,12 +0,0 @@ -// ========================================================================== -// em() -// -// Convert px to em in a readable fashion. -// ========================================================================== - -// Examples: -// 1. font-size: em(14px); -// 2. font-size: em(30px/14px); -@function em($value, $context: map-get($root-font, font-size)) { - @return ($value / $context * 1em); -} diff --git a/plugins/jetpack/scss/atoms/typography/_variables.scss b/plugins/jetpack/scss/atoms/typography/_variables.scss deleted file mode 100644 index e1a912b1..00000000 --- a/plugins/jetpack/scss/atoms/typography/_variables.scss +++ /dev/null @@ -1,31 +0,0 @@ -// ========================================================================== -// Typography variables -// ========================================================================== - -$normal: normal; // Change these values when using custom fonts -$bold: bold; // For example, bold could change to 400; - -$root-font:( - color: #222, - font-size: 14px, - line-height: 1.4 -); - -$pre__background: #eee; -$mark__background: #fff9c0; - -// ========================================================================== -// Typefaces -// ========================================================================== - -$monospace: 'courier new', monospace; -$serif: Georgia, "Times New Roman", Times, serif; -$sans: Helvetica, Arial, sans-serif; // 400i,400,600,700,800 -$calluna: 'calluna', $sans; // 400 -$gill: "Gill Sans", "Gill Sans MT", $sans; - -// ========================================================================== -// Icons -// ========================================================================== - -$genericons: 'genericons'; |