diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-11-08 08:11:35 -0500 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-11-08 08:11:35 -0500 |
commit | 705d5a012cc36d61a59823ea8966d5bfbf34f5b2 (patch) | |
tree | 23df6670f021b549cfa3cacc5666f45140c1faed /css | |
parent | 3a8bcb174ab536b778191f5c20f7bd5b5415acca (diff) | |
download | fosdem-2018-presentation-705d5a012cc36d61a59823ea8966d5bfbf34f5b2.tar fosdem-2018-presentation-705d5a012cc36d61a59823ea8966d5bfbf34f5b2.tar.gz |
define normal font widths in all themes to make sure things look the same after #691
Diffstat (limited to 'css')
-rw-r--r-- | css/theme/beige.css | 2 | ||||
-rw-r--r-- | css/theme/blood.css | 2 | ||||
-rw-r--r-- | css/theme/default.css | 2 | ||||
-rw-r--r-- | css/theme/moon.css | 2 | ||||
-rw-r--r-- | css/theme/night.css | 2 | ||||
-rw-r--r-- | css/theme/serif.css | 2 | ||||
-rw-r--r-- | css/theme/simple.css | 2 | ||||
-rw-r--r-- | css/theme/sky.css | 2 | ||||
-rw-r--r-- | css/theme/solarized.css | 2 | ||||
-rw-r--r-- | css/theme/template/theme.scss | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/css/theme/beige.css b/css/theme/beige.css index 1d9a886..c2eb3f3 100644 --- a/css/theme/beige.css +++ b/css/theme/beige.css @@ -27,7 +27,7 @@ body { .reveal { font-family: "Lato", sans-serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #333333; } diff --git a/css/theme/blood.css b/css/theme/blood.css index 5763898..91521ab 100644 --- a/css/theme/blood.css +++ b/css/theme/blood.css @@ -26,7 +26,7 @@ body { .reveal { font-family: Ubuntu, "sans-serif"; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #eeeeee; } diff --git a/css/theme/default.css b/css/theme/default.css index 9a2f7c6..8790469 100644 --- a/css/theme/default.css +++ b/css/theme/default.css @@ -27,7 +27,7 @@ body { .reveal { font-family: "Lato", sans-serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #eeeeee; } diff --git a/css/theme/moon.css b/css/theme/moon.css index 5aa2866..342f464 100644 --- a/css/theme/moon.css +++ b/css/theme/moon.css @@ -27,7 +27,7 @@ body { .reveal { font-family: "Lato", sans-serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #93a1a1; } diff --git a/css/theme/night.css b/css/theme/night.css index 2ea3fc4..a35e3eb 100644 --- a/css/theme/night.css +++ b/css/theme/night.css @@ -15,7 +15,7 @@ body { .reveal { font-family: "Open Sans", sans-serif; font-size: 30px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #eeeeee; } diff --git a/css/theme/serif.css b/css/theme/serif.css index 734de56..dd6619f 100644 --- a/css/theme/serif.css +++ b/css/theme/serif.css @@ -17,7 +17,7 @@ body { .reveal { font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: black; } diff --git a/css/theme/simple.css b/css/theme/simple.css index b8f31bc..460379e 100644 --- a/css/theme/simple.css +++ b/css/theme/simple.css @@ -17,7 +17,7 @@ body { .reveal { font-family: "Lato", sans-serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: black; } diff --git a/css/theme/sky.css b/css/theme/sky.css index 35d048e..34336cb 100644 --- a/css/theme/sky.css +++ b/css/theme/sky.css @@ -24,7 +24,7 @@ body { .reveal { font-family: "Open Sans", sans-serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #333333; } diff --git a/css/theme/solarized.css b/css/theme/solarized.css index 17c3205..4eeed62 100644 --- a/css/theme/solarized.css +++ b/css/theme/solarized.css @@ -27,7 +27,7 @@ body { .reveal { font-family: "Lato", sans-serif; font-size: 36px; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: #657b83; } diff --git a/css/theme/template/theme.scss b/css/theme/template/theme.scss index 735b765..ff86356 100644 --- a/css/theme/template/theme.scss +++ b/css/theme/template/theme.scss @@ -12,7 +12,7 @@ body { .reveal { font-family: $mainFont; font-size: $mainFontSize; - font-weight: 200; + font-weight: normal; letter-spacing: -0.02em; color: $mainColor; } |