aboutsummaryrefslogtreecommitdiff
path: root/css/theme
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2016-06-28 12:34:23 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2017-05-16 09:45:37 +0200
commit10545d41cc3d5d18b964d80182676ef6770f11d3 (patch)
tree62a83b3b27697744f7d46d8c813921db126c1e74 /css/theme
parent21554157677db983459850493c6075b29beae29f (diff)
downloadfosdem-2018-presentation-10545d41cc3d5d18b964d80182676ef6770f11d3.tar
fosdem-2018-presentation-10545d41cc3d5d18b964d80182676ef6770f11d3.tar.gz
simplify control styling using currentColor
Diffstat (limited to 'css/theme')
-rw-r--r--css/theme/beige.css5
-rw-r--r--css/theme/black.css5
-rw-r--r--css/theme/blood.css5
-rw-r--r--css/theme/league.css5
-rw-r--r--css/theme/moon.css5
-rw-r--r--css/theme/night.css5
-rw-r--r--css/theme/serif.css5
-rw-r--r--css/theme/simple.css5
-rw-r--r--css/theme/sky.css5
-rw-r--r--css/theme/solarized.css5
-rw-r--r--css/theme/template/theme.scss5
-rw-r--r--css/theme/white.css5
12 files changed, 24 insertions, 36 deletions
diff --git a/css/theme/beige.css b/css/theme/beige.css
index 3e11649..aa3500f 100644
--- a/css/theme/beige.css
+++ b/css/theme/beige.css
@@ -255,9 +255,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #8b743d; }
+.reveal .controls {
+ color: #8b743d; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/black.css b/css/theme/black.css
index 6106a33..7d6b396 100644
--- a/css/theme/black.css
+++ b/css/theme/black.css
@@ -251,9 +251,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #42affa; }
+.reveal .controls {
+ color: #42affa; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/blood.css b/css/theme/blood.css
index b3753fb..d65a9d6 100644
--- a/css/theme/blood.css
+++ b/css/theme/blood.css
@@ -254,9 +254,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #a23; }
+.reveal .controls {
+ color: #a23; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/league.css b/css/theme/league.css
index bce492c..118557a 100644
--- a/css/theme/league.css
+++ b/css/theme/league.css
@@ -257,9 +257,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #13DAEC; }
+.reveal .controls {
+ color: #13DAEC; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/moon.css b/css/theme/moon.css
index e12fca1..6847868 100644
--- a/css/theme/moon.css
+++ b/css/theme/moon.css
@@ -255,9 +255,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #268bd2; }
+.reveal .controls {
+ color: #268bd2; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/night.css b/css/theme/night.css
index f6796b3..1cc0f84 100644
--- a/css/theme/night.css
+++ b/css/theme/night.css
@@ -249,9 +249,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #e7ad52; }
+.reveal .controls {
+ color: #e7ad52; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/serif.css b/css/theme/serif.css
index b426a66..1a555d9 100644
--- a/css/theme/serif.css
+++ b/css/theme/serif.css
@@ -251,9 +251,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #51483D; }
+.reveal .controls {
+ color: #51483D; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/simple.css b/css/theme/simple.css
index fd24092..92e3294 100644
--- a/css/theme/simple.css
+++ b/css/theme/simple.css
@@ -254,9 +254,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #00008B; }
+.reveal .controls {
+ color: #00008B; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/sky.css b/css/theme/sky.css
index 881f2fd..1425ccd 100644
--- a/css/theme/sky.css
+++ b/css/theme/sky.css
@@ -258,9 +258,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #3b759e; }
+.reveal .controls {
+ color: #3b759e; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/solarized.css b/css/theme/solarized.css
index b20d22a..f7c27fe 100644
--- a/css/theme/solarized.css
+++ b/css/theme/solarized.css
@@ -255,9 +255,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #268bd2; }
+.reveal .controls {
+ color: #268bd2; }
/*********************************************
* PROGRESS BAR
diff --git a/css/theme/template/theme.scss b/css/theme/template/theme.scss
index fb116fc..bd23212 100644
--- a/css/theme/template/theme.scss
+++ b/css/theme/template/theme.scss
@@ -297,9 +297,8 @@ body {
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: $linkColor;
+.reveal .controls {
+ color: $linkColor;
}
diff --git a/css/theme/white.css b/css/theme/white.css
index 299d9ff..14a8610 100644
--- a/css/theme/white.css
+++ b/css/theme/white.css
@@ -251,9 +251,8 @@ body {
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
-.reveal .controls button:before,
-.reveal .controls button:after {
- background-color: #2a76dd; }
+.reveal .controls {
+ color: #2a76dd; }
/*********************************************
* PROGRESS BAR