diff options
author | Hakim El Hattab | 2014-02-03 16:18:09 +0530 |
---|---|---|
committer | Hakim El Hattab | 2014-02-03 16:18:09 +0530 |
commit | d69861970530b1ed38e7cc80ef5fd3b388ff95ed (patch) | |
tree | 3a2b82a4187fe0694e98ae3fbb897c03394ec62b /css/reveal.css | |
parent | 49e0749bc637a87aa43e77bc2f12f55b8039b1ea (diff) |
define basic black/white colors in the default, non-themed, styles
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/css/reveal.css b/css/reveal.css index 539058d..6680f6d 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -54,6 +54,9 @@ body { body { position: relative; line-height: 1; + + background-color: #fff; + color: #000; } ::selection { @@ -451,7 +454,7 @@ body { top: 42px; border-right-width: 22px; - border-right-color: #eee; + border-right-color: #000; } .reveal .controls div.navigate-left.fragmented { opacity: 0.3; @@ -462,7 +465,7 @@ body { top: 42px; border-left-width: 22px; - border-left-color: #eee; + border-left-color: #000; } .reveal .controls div.navigate-right.fragmented { opacity: 0.3; @@ -472,7 +475,7 @@ body { left: 42px; border-bottom-width: 22px; - border-bottom-color: #eee; + border-bottom-color: #000; } .reveal .controls div.navigate-up.fragmented { opacity: 0.3; @@ -483,7 +486,7 @@ body { top: 74px; border-top-width: 22px; - border-top-color: #eee; + border-top-color: #000; } .reveal .controls div.navigate-down.fragmented { opacity: 0.3; @@ -502,6 +505,8 @@ body { bottom: 0; left: 0; z-index: 10; + + background-color: rgba( 0, 0, 0, 0.2 ); } .reveal .progress:after { content: ''; @@ -516,6 +521,8 @@ body { height: 100%; width: 0px; + background-color: #000; + -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); |