diff options
author | Sam Potts <me@sampotts.me> | 2015-07-20 22:28:27 +1000 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2015-07-20 22:28:27 +1000 |
commit | b39961ec49f6fc62e3807bb3b41e7e3c369eb26a (patch) | |
tree | 6393b9970aab08b51d6d8f2623a23dd3f246f040 /src/sass | |
parent | 8894b4c7b95e74a9fd04b2a8916e4968139df96f (diff) | |
download | plyr-b39961ec49f6fc62e3807bb3b41e7e3c369eb26a.tar.lz plyr-b39961ec49f6fc62e3807bb3b41e7e3c369eb26a.tar.xz plyr-b39961ec49f6fc62e3807bb3b41e7e3c369eb26a.zip |
Tidying
Diffstat (limited to 'src/sass')
-rw-r--r-- | src/sass/plyr.scss | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/sass/plyr.scss b/src/sass/plyr.scss index 011a5368..767dc501 100644 --- a/src/sass/plyr.scss +++ b/src/sass/plyr.scss @@ -1,5 +1,6 @@ // ========================================================================== -// HTML5 Media Player +// Plyr styles +// https://github.com/selz/plyr // ========================================================================== // Variables @@ -51,6 +52,13 @@ $volume-thumb-bg-focus: $control-bg-hover !default; $bp-control-split: 560px !default; // When controls split into left/right $bp-captions-large: 768px !default; // When captions jump to the larger font size +// Animation +// --------------------------------------- + +@keyframes progress { + to { background-position: $progress-loading-size 0; } +} + // Mixins // ------------------------------- @@ -100,13 +108,7 @@ $bp-captions-large: 768px !default; // When captions jump to the larger fo outline-offset: 0; } -// Animation -// --------------------------------------- -@keyframes progress { - to { background-position: $progress-loading-size 0; } -} - -// <input type="range"> styling +// Range mixins @mixin volume-thumb() { height: $volume-thumb-height; |