diff options
author | Hakim El Hattab | 2012-10-16 09:27:55 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-10-16 09:27:55 -0400 |
commit | 17f3cf4332cb300d08fba2b77416dd281cbebb18 (patch) | |
tree | d6852258d10ce433a4057021d99394d4c40ab3b8 /css/theme/sky.css | |
parent | 4271677ea1cfcf3ba732e99eb57e073a8d4860f4 (diff) |
adjust themes so that font definitions are at top, apply fonts on .reveal instead of body
Diffstat (limited to 'css/theme/sky.css')
-rw-r--r-- | css/theme/sky.css | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/css/theme/sky.css b/css/theme/sky.css index 92a91af..71ebd2c 100644 --- a/css/theme/sky.css +++ b/css/theme/sky.css @@ -5,12 +5,30 @@ */ /********************************************* - * FONT-FACE DEFINITIONS + * FONTS *********************************************/ @import url(http://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); @import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); +.reveal { + font-family: 'Open Sans', sans-serif; + font-size: 36px; + font-weight: 200; + letter-spacing: -0.02em; +} + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + font-family: 'Quicksand', sans-serif; + line-height: 0.9em; + letter-spacing: -0.08em; + text-transform: uppercase; +} /********************************************* @@ -18,10 +36,6 @@ *********************************************/ body { - font-family: 'Open Sans', sans-serif; - font-size: 36px; - font-weight: 200; - letter-spacing: -0.02em; color: #333; background: #f7fbfc; @@ -60,11 +74,6 @@ body { .reveal h6 { margin: 0 0 20px 0; color: #333; - font-family: 'Quicksand', sans-serif; - line-height: 0.9em; - letter-spacing: -0.08em; - - text-transform: uppercase; } |