From 84d6079e2ba49fa8c73318e4f5930af1aaddb338 Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Tue, 6 Sep 2022 17:04:05 +0200 Subject: add styling based on site jord --- partials/_base-normalize.scss | 6 ++++++ partials/_base-typey.scss | 24 ++++++++++++++++++++++++ partials/_base.scss | 31 +++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 partials/_base-normalize.scss create mode 100644 partials/_base-typey.scss create mode 100644 partials/_base.scss (limited to 'partials') diff --git a/partials/_base-normalize.scss b/partials/_base-normalize.scss new file mode 100644 index 0000000..4f0f737 --- /dev/null +++ b/partials/_base-normalize.scss @@ -0,0 +1,6 @@ +// Normalize integration +// +// No styleguide reference. +$-normalize-include: null; +$-normalize-exclude: null; +$base-font-family: $sans-serif-stack; diff --git a/partials/_base-typey.scss b/partials/_base-typey.scss new file mode 100644 index 0000000..9aabd69 --- /dev/null +++ b/partials/_base-typey.scss @@ -0,0 +1,24 @@ +// Typey integration +// +// No styleguide reference. +$base-unit: em; +$base-font-size: 16px; +$base-line-height: 28px; + +$helvetica: Helvetica, sans-serif; +$verdana: Verdana, sans-serif; +$garamond: Garamond, serif; + +$typefaces: ( + sans-serif: $sans-serif-stack, + serif: $garamond, + monospace: $monospace-stack, +); + +$typestyles: ( + heading-1: ( + font-size: xxl, + line-height: 2, + weight: normal, + ), +); diff --git a/partials/_base.scss b/partials/_base.scss new file mode 100644 index 0000000..da522e1 --- /dev/null +++ b/partials/_base.scss @@ -0,0 +1,31 @@ +// Colors +// +// (don't use these directly - only referenced by other variables) +// +// No styleguide reference. +$black: black; +$white: white; +$green: darkgreen; + +// color model +$colorBase: $black; +$colorBg: $white; +$colorPrimary: $green; + +$baseTextColor: $colorBase; + +$linkColor: $colorBase; +$linkHoverColor: $colorPrimary; + +$headerColor: $colorPrimary; + +// Media +// +// No styleguide reference. +$wide: 900px; + +// Framework integrations +// +// No styleguide reference. +@import "base-typey"; +@import "base-normalize"; -- cgit v1.2.3