56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
// --------------------------------------------------------------
|
|
// Base styling
|
|
// --------------------------------------------------------------
|
|
|
|
// Base
|
|
.plyr {
|
|
position: relative;
|
|
max-width: 100%;
|
|
min-width: 200px;
|
|
font-family: @plyr-font-family;
|
|
font-weight: @plyr-font-weight-normal;
|
|
line-height: @plyr-line-height;
|
|
direction: ltr;
|
|
text-shadow: none;
|
|
transition: box-shadow 0.3s ease;
|
|
.plyr-font-smoothing(off);
|
|
|
|
// Media elements
|
|
video,
|
|
audio {
|
|
width: 100%;
|
|
height: auto;
|
|
vertical-align: middle;
|
|
border-radius: inherit;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 3px fade(#000, 10%);
|
|
}
|
|
}
|
|
|
|
// Full UI only
|
|
.plyr--full-ui {
|
|
& 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;
|
|
}
|
|
}
|
|
}
|