diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2011-12-22 00:00:29 -0800 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2011-12-22 00:00:29 -0800 |
commit | bdff009c74dec78c012b0d8c3961bb70639404c2 (patch) | |
tree | 96db94cab26c69672a293b120620a0dd4f2a810b /css | |
parent | 2026c9645c526ce3d5e8ffd34a92e8d1c16326a8 (diff) | |
download | freenode-live-2017-presentation-bdff009c74dec78c012b0d8c3961bb70639404c2.tar freenode-live-2017-presentation-bdff009c74dec78c012b0d8c3961bb70639404c2.tar.gz |
added optional presentation progress bar
Diffstat (limited to 'css')
-rw-r--r-- | css/main.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css index d2ab138..18a9887 100644 --- a/css/main.css +++ b/css/main.css @@ -334,6 +334,8 @@ code { small { font-size: 60%; + line-height: 1em; + vertical-align: top; } q { @@ -440,6 +442,37 @@ section img { } + +/********************************************* + * PROGRESS BAR + *********************************************/ + +progress::-webkit-progress-bar { + background: rgba(0,0,0,0.2); +} + +progress::-moz-progress-bar { + background: hsl(185, 85%, 50%); +} + +progress::-webkit-progress-value { + background: hsl(185, 85%, 50%); +} + +progress { + position: absolute; + height: 4px; + width: 100%; + bottom: 0; + left: 0; + padding: 0; + margin: 0; + + border: 0; + outline: 0; + background: none; +} + /********************************************* * ROLLING LINKS *********************************************/ |