From 12db9af2cee842f0045ed8cace7b5b7b6fe5c609 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Mon, 26 Feb 2018 16:51:09 -0500 Subject: [PATCH] Added SASS file for default styles --- src/sass/mup.sass | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/sass/mup.sass diff --git a/src/sass/mup.sass b/src/sass/mup.sass new file mode 100644 index 0000000..cceee57 --- /dev/null +++ b/src/sass/mup.sass @@ -0,0 +1,42 @@ +.mup-video + vertical-align: top + margin: 0 + padding: 0 + +.mup-controls + display: flex + vertical-align: top + white-space: nowrap + width: calc(100% - 10px) + padding: 5px + background: #212121 + +.mup-control + display: inline-block + flex: none + +button.mup-control + margin: 0 + padding: 7px 12px + background: #eee + border: none + color: #000 + font-size: 16px + transition: all 200ms ease-in-out + &:hover + background: #fff + color: #212121 + cursor: pointer + +.mup-progress-bar, .mup-progress-fill + margin: 0 + padding: 0 + border: 0 + +.mup-progress-bar + flex: 1 + background: pink + +.mup-progress-fill + height: 100% + background: lime \ No newline at end of file