Reverted LESS structure for now

This commit is contained in:
Sam Potts
2016-05-19 11:31:27 +10:00
parent e0ef7482c6
commit 126f80ed78
9 changed files with 740 additions and 741 deletions
-37
View File
@@ -1,37 +0,0 @@
// ==========================================================================
// Base
// ==========================================================================
.plyr {
position: relative;
max-width: 100%;
min-width: 200px;
font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
& when (@plyr-border-box = true) {
// border-box everything
// http://paulirish.com/2012/box-sizing-border-box-ftw/
&,
*,
*::after,
*::before {
box-sizing: border-box;
}
}
& when (@plyr-touch-action = true) {
// Fix 300ms delay
a, button, input, label {
touch-action: manipulation;
}
}
// Media elements
video,
audio {
width: 100%;
height: auto;
vertical-align: middle;
border-radius: inherit;
}
}