diff options
author | uriel | 2013-10-31 00:49:07 +0200 |
---|---|---|
committer | uriel | 2013-10-31 00:49:07 +0200 |
commit | dda885b71abcf0ecc753bcda3e639f6aea352632 (patch) | |
tree | 2d68945c5c9a8facaaad184bfe86333a185254dd /css/reveal.css | |
parent | 7b63cda19d0811073a6246d4d36ea7438fed6bce (diff) |
move the slide-number out of the controls to a proper position and little fix to the updating event.
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/css/reveal.css b/css/reveal.css index 6dc6594..77494bd 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -391,15 +391,6 @@ body { transition: all 0.2s ease; } -.reveal .controls .slide-number { - font-size: 11px; - top: 10px; - left: -10px; - opacity: 0.5; - width: 45px; - text-align: center; -} - .reveal .controls div.enabled { opacity: 0.7; cursor: pointer; @@ -485,6 +476,21 @@ body { transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); } +/********************************************* + * SLIDE NUMBER + *********************************************/ + +.reveal .slide-number { + position: fixed; + display: block; + opacity: 0.5; + z-index: 31; + width: 110px; + bottom: 58px; + right: 11px; + font-size: 12px; + text-align: center; +} /********************************************* * SLIDES |