diff options
author | Hakim El Hattab | 2016-06-28 12:12:01 +0200 |
---|---|---|
committer | Hakim El Hattab | 2017-05-16 09:45:37 +0200 |
commit | e45a425575502ee085012e53ab46d479bd02e541 (patch) | |
tree | 1338b7771c80e1c867988b18698db013a58e76c5 /css/reveal.scss | |
parent | 4fb8e78eb4582a05f73eaf189aa7263381faf87a (diff) |
default to bottom right controls, rename soften arrows option
Diffstat (limited to 'css/reveal.scss')
-rw-r--r-- | css/reveal.scss | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/css/reveal.scss b/css/reveal.scss index f3a4888..ead768b 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -271,10 +271,13 @@ body { border: 0; outline: 0; cursor: pointer; - opacity: 0; transform: scale(.9999); transition: all 0.2s ease; z-index: 2; // above slides + + visibility: hidden; + opacity: 0; + -webkit-appearance: none; -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ); } @@ -330,11 +333,11 @@ body { transform: translateX(-50%) rotate( -90deg ); } - // The soften back arrows option strongly deemphasizes - // backwards navigation in favor of drawing attention - // forwards - &.soften-back-arrows .navigate-left.enabled, - &.soften-back-arrows .navigate-up.enabled { + // The deemphasize back arrows option strongly deemphasizes + // backwards navigation in favor of drawing attention to + // forwards navigation + &.deemphasize-back-arrows .navigate-left.enabled, + &.deemphasize-back-arrows .navigate-up.enabled { opacity: 0.3; &:hover { @@ -344,6 +347,7 @@ body { // Any control button that can be clicked is "enabled" .enabled { + visibility: visible; opacity: 0.7; cursor: pointer; } |