Split LESS into more granular files, Vimeo fixes

This commit is contained in:
Sam Potts
2017-10-28 20:14:33 +11:00
parent dd9d5c8898
commit 3d50936b47
36 changed files with 1171 additions and 1055 deletions

View File

@ -7,6 +7,7 @@
0% {
opacity: 0;
}
100% {
opacity: 1;
}

View File

@ -3,27 +3,27 @@
// ==========================================================================
@font-face {
font-family: "Avenir";
src: url("https://cdn.plyr.io/static/fonts/avenir-medium.woff2") format("woff2"),
url("https://cdn.plyr.io/static/fonts/avenir-medium.woff") format("woff");
font-family: 'Avenir';
src: url('https://cdn.plyr.io/static/fonts/avenir-medium.woff2') format('woff2'),
url('https://cdn.plyr.io/static/fonts/avenir-medium.woff') format('woff');
font-style: normal;
font-weight: @font-weight-base;
font-display: swap;
}
@font-face {
font-family: "Avenir";
src: url("https://cdn.plyr.io/static/fonts/avenir-bold.woff2") format("woff2"),
url("https://cdn.plyr.io/static/fonts/avenir-bold.woff") format("woff");
font-family: 'Avenir';
src: url('https://cdn.plyr.io/static/fonts/avenir-bold.woff2') format('woff2'),
url('https://cdn.plyr.io/static/fonts/avenir-bold.woff') format('woff');
font-style: normal;
font-weight: @font-weight-bold;
font-display: swap;
}
@font-face {
font-family: "Avenir";
src: url("https://cdn.plyr.io/static/fonts/avenir-black.woff2?v=3") format("woff2"),
url("https://cdn.plyr.io/static/fonts/avenir-black.woff?v=3") format("woff");
font-family: 'Avenir';
src: url('https://cdn.plyr.io/static/fonts/avenir-black.woff2?v=3') format('woff2'),
url('https://cdn.plyr.io/static/fonts/avenir-black.woff?v=3') format('woff');
font-style: normal;
font-weight: @font-weight-heavy;
font-display: swap;

View File

@ -189,7 +189,7 @@ pre {
*/
q {
quotes: "\201C" "\201D" "\2018" "\2019";
quotes: '\201C' '\201D' '\2018' '\2019';
}
/**
@ -322,9 +322,9 @@ select {
*/
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
html input[type='button'],
input[type='reset'],
input[type='submit'] {
-webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */
}
@ -343,8 +343,8 @@ html input[disabled] {
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
input[type='checkbox'],
input[type='radio'] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
@ -355,7 +355,7 @@ input[type="radio"] {
* (include `-moz` to future-proof).
*/
input[type="search"] {
input[type='search'] {
-webkit-appearance: textfield; /* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box; /* 2 */
@ -367,8 +367,8 @@ input[type="search"] {
* on OS X.
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
}
@ -403,4 +403,4 @@ textarea {
table {
border-collapse: collapse;
border-spacing: 0;
}
}