diff options
author | Joar Wandborg <git@wandborg.com> | 2012-03-27 12:05:09 +0200 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-03-27 12:05:09 +0200 |
commit | deea3f6661df68a62d56317915ca1e71240061d4 (patch) | |
tree | 6b7708610db3500f07f494519d57eec7a0799eee /mediagoblin/static/css | |
parent | d0cb752992ce6cea2b8581dead5481591ddbb82b (diff) | |
parent | c56d4b55a169d67a3e5e5aba4271a67f0cb79c6f (diff) | |
download | mediagoblin-deea3f6661df68a62d56317915ca1e71240061d4.tar.lz mediagoblin-deea3f6661df68a62d56317915ca1e71240061d4.tar.xz mediagoblin-deea3f6661df68a62d56317915ca1e71240061d4.zip |
Merge remote-tracking branch 'joar/audio+sniffing'
Conflicts:
mediagoblin/media_types/image/processing.py
mediagoblin/media_types/video/__init__.py
mediagoblin/media_types/video/processing.py
mediagoblin/tests/test_submission.py
Diffstat (limited to 'mediagoblin/static/css')
-rw-r--r-- | mediagoblin/static/css/audio.css | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/mediagoblin/static/css/audio.css b/mediagoblin/static/css/audio.css new file mode 100644 index 00000000..5f7a888a --- /dev/null +++ b/mediagoblin/static/css/audio.css @@ -0,0 +1,53 @@ +.audio-spectrogram { + position: relative; +} +.playhead { + position: absolute; + top: 0; + left: 0; + background: rgba(134, 212, 177, 0.3); + border-right: thin solid #ffaa00; + height: 100%; + -webkit-transition: width .1s ease-out; + -moz-transition: width .1s ease-out; +} +.audio-control-play-pause { + position: absolute; + bottom: 0; + left: 5px; + cursor: pointer; + /* background: rgba(0, 0, 0, 0.7); */ + font-size: 40px; + width: 50px; + text-shadow: 0 0 10px black; +} + .audio-control-play-pause.playing { + color: #b71500; + } + .audio-control-play-pause.paused { + color: rgb(134, 212, 177); + } +.buffered { + position: absolute; + bottom: 0; + left: 0; + height: 2px; + width: 0; + -webkit-transition: width 1s ease-out; + -moz-transition: width 1s ease-out; + background: rgba(134, 177, 212, 1); + cursor: pointer; +} +.seekbar { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.audio-currentTime { + position: absolute; + bottom: 0; + right: 0; + background: rgba(0, 0, 0, 0.7); +} |