diff options
author | Hakim El Hattab | 2012-10-22 23:16:14 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-10-22 23:16:14 -0400 |
commit | aefe981040ea8c5c7875d9da1ac860def44a19e8 (patch) | |
tree | bb1b059772170d7f6b4cafe521067370efec352b /css/reveal.css | |
parent | 7f4e5fc6bf0fa4c7ef121d707d385ee89128a441 (diff) |
use borders to generate control arrows (closes #137)
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/css/reveal.css b/css/reveal.css index ce4765f..b39ea13 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -316,8 +316,8 @@ body { .reveal .controls { display: none; position: fixed; - width: 90px; - height: 90px; + width: 110px; + height: 110px; z-index: 30; right: 10px; bottom: 10px; @@ -329,10 +329,17 @@ body { width: 0; height: 0; border: 12px solid transparent; + + -webkit-transition: opacity 0.2s ease; + -moz-transition: opacity 0.2s ease; + -ms-transition: opacity 0.2s ease; + -o-transition: opacity 0.2s ease; + transition: opacity 0.2s ease; } .reveal .controls div.enabled { opacity: 0.6; + cursor: pointer; } .reveal .controls div.enabled:active { @@ -340,28 +347,32 @@ body { } .reveal .controls div.left { - top: 30px; + top: 42px; + border-right-width: 22px; border-right-color: #eee; } .reveal .controls div.right { - left: 60px; - top: 30px; + left: 74px; + top: 42px; + border-left-width: 22px; border-left-color: #eee; } .reveal .controls div.up { - left: 30px; + left: 42px; + border-bottom-width: 22px; border-bottom-color: #eee; } .reveal .controls div.down { - left: 30px; - top: 60px; + left: 42px; + top: 74px; + border-top-width: 22px; border-top-color: #eee; } |