From b3967c83cbdba7f44c2ecef09d3e80801106ac81 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Tue, 11 Aug 2015 22:56:34 -0400 Subject: Update to Tiny CSS --- _sass/tiny/_base.scss | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 _sass/tiny/_base.scss (limited to '_sass/tiny/_base.scss') diff --git a/_sass/tiny/_base.scss b/_sass/tiny/_base.scss new file mode 100644 index 0000000..ba6d78a --- /dev/null +++ b/_sass/tiny/_base.scss @@ -0,0 +1,62 @@ +* { + box-sizing: border-box; +} + +body { + font-size: $base-font-size; + color: $base-color; +} + +a { + color: $brand-color; + text-decoration: none; + + &:hover, + &:active { + color: $alternate-color; + } +} + +// Horizontal lines +hr { + height: 0; + margin: 15px 0; + overflow: hidden; + background: transparent; + border: 0; + border-bottom: 1px solid $muted-color; + @include clearfix(); +} + +p { + line-height: 2em; +} + +li { + margin-top: 1em; + margin-bottom: 1em; +} + +pre { + line-height: 1.5em; +} + +blockquote { + font-style: italic; +} + +.main-header { + padding: 10px; + text-align: center; + font-family: $sans; + @include gradient(lighten($brand-color, 3%), darken($brand-color, 3%)); + a { + color: white; + padding: 15px; + + &:active, + &:hover { + text-decoration: none; + } + } +} -- cgit v1.2.3