diff options
author | Hakim El Hattab | 2017-05-18 09:42:01 +0200 |
---|---|---|
committer | Hakim El Hattab | 2017-05-18 09:42:01 +0200 |
commit | a5e175d59fba9f242b23e64476516fc81cbe2e0a (patch) | |
tree | f7408b3c4835d6206cb977d9d6663dd7088a5b7f /css/reveal.scss | |
parent | d770f32bb974b9d97c3b22dd83dab0c01b8cdc28 (diff) |
fix up arrow position
Diffstat (limited to 'css/reveal.scss')
-rw-r--r-- | css/reveal.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/css/reveal.scss b/css/reveal.scss index 2651772..365c36e 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -355,7 +355,7 @@ $controlArrowThickness: 0.5em; } .navigate-up { - right: $controlArrowSpacing; + right: $controlArrowSpacing + $controlArrowSize/2; bottom: $controlArrowSpacing*2 + $controlArrowSize; transform: translateY( -10px ); @@ -401,7 +401,7 @@ $controlArrowThickness: 0.5em; // Any control button that can be clicked is "enabled" .enabled { visibility: visible; - opacity: 0.8; + opacity: 0.9; cursor: pointer; transform: none; } @@ -409,7 +409,7 @@ $controlArrowThickness: 0.5em; // Any control button that leads to showing or hiding // a fragment .enabled.fragmented { - opacity: 0.4; + opacity: 0.5; } .enabled:hover, |