diff options
author | Hakim El Hattab | 2016-06-28 12:34:23 +0200 |
---|---|---|
committer | Hakim El Hattab | 2017-05-16 09:45:37 +0200 |
commit | 10545d41cc3d5d18b964d80182676ef6770f11d3 (patch) | |
tree | 62a83b3b27697744f7d46d8c813921db126c1e74 /css/reveal.scss | |
parent | 21554157677db983459850493c6075b29beae29f (diff) |
simplify control styling using currentColor
Diffstat (limited to 'css/reveal.scss')
-rw-r--r-- | css/reveal.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/css/reveal.scss b/css/reveal.scss index 3127453..f76fb82 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -261,6 +261,7 @@ body { bottom: 0; left: 0; z-index: 1; + color: #fff; button { position: absolute; @@ -271,6 +272,7 @@ body { border: 0; outline: 0; cursor: pointer; + color: currentColor; transform: scale(.9999); transition: all 0.2s ease; z-index: 2; // above slides @@ -291,7 +293,7 @@ body { width: $length; height: $thickness; border-radius: $thickness/2; - background-color: #fff; + background-color: currentColor; transition: all 0.15s ease, background-color 0.8s ease; transform-origin: $thickness/2 50%; |