Prep work for theming

This commit is contained in:
Sam Potts
2016-05-01 19:27:53 +10:00
parent 39a0a38d07
commit fad3f41ca7
16 changed files with 699 additions and 679 deletions
+32
View File
@@ -0,0 +1,32 @@
// Base styles
// --------------------------------------------------------------
.plyr {
position: relative;
max-width: 100%;
min-width: 200px;
font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
// border-box everything
// http://paulirish.com/2012/box-sizing-border-box-ftw/
&,
*,
*::after,
*::before {
box-sizing: border-box;
}
// Fix 300ms delay
a, button, input, label {
touch-action: manipulation;
}
// Media elements
video,
audio {
width: 100%;
height: auto;
vertical-align: middle;
border-radius: inherit;
}
}