This commit is contained in:
Sam Potts 2017-07-09 17:14:42 +10:00
parent 21f444ed61
commit 03c3960e93
5 changed files with 12 additions and 10 deletions

2
demo/dist/demo.css vendored

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@
@gray-lighter: #dbe3e8;
@off-white: #f2f5f7;
@brand-primary: #20d193;
@brand-primary: #1aafff;
@brand-secondary: #02BD9B;
// Brands
@ -24,8 +24,8 @@
@font-size-base: 16;
@font-size-small: 14;
@font-size-h1: 64;
@font-weight-base: 500;
@font-weight-bold: 700;
@font-weight-base: 400;
@font-weight-bold: 500;
// Elements
@link-color: @brand-primary;

2
dist/plyr.css vendored

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,7 @@
max-width: 100%;
min-width: 200px;
font-family: @plyr-font-family;
font-weight: 500;
font-weight: @plyr-font-weight-normal;
direction: ltr;
& when (@plyr-border-box = true) {
@ -546,7 +546,7 @@
width: 100%;
padding: @plyr-control-padding (@plyr-control-padding * 2);
color: @plyr-menu-color;
font-weight: 600;
font-weight: @plyr-font-weight-bold;
user-select: none;
&::after {
@ -614,7 +614,7 @@
color: fade(@plyr-menu-color, 80%);
.plyr__badge {
font-weight: 600;
font-weight: @plyr-font-weight-bold;
}
}
}

View File

@ -9,12 +9,14 @@
@plyr-sr-only-important: true;
// Colors
@plyr-color-main: #20d193;
@plyr-color-main: #1aafff;
// Font
@plyr-font-family: Avenir, 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
@plyr-font-family: inherit; //Avenir, 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
@plyr-font-size-small: 14px;
@plyr-font-size-base: 16px;
@plyr-font-weight-normal: 400;
@plyr-font-weight-bold: 600;
// Captions
@plyr-captions-bg: fade(#000, 60%);