]>
Commit | Line | Data |
---|---|---|
fa12eacc | 1 | @use 'sass:math'; |
6f03f944 | 2 | @use 'sass:color'; |
a0da6f90 | 3 | @use 'bootstrap/scss/functions' as *; |
9b8a7aa8 | 4 | |
8ff3f883 C |
5 | $small-view: 800px; |
6 | $mobile-view: 500px; | |
7 | ||
8a8e02a4 | 8 | $main-fonts: 'Source Sans Pro', sans-serif; |
b33f657c C |
9 | $font-regular: 400; |
10 | $font-semibold: 600; | |
11 | $font-bold: 700; | |
26171379 | 12 | $line-height-normal: 1.2; |
b33f657c | 13 | |
457bb213 C |
14 | $grey-background-color: #E5E5E5; |
15 | $grey-background-hover-color: #EFEFEF; | |
16 | $grey-foreground-color: #585858; | |
17 | $grey-foreground-hover-color: #303030; | |
6f03f944 | 18 | $grey-button-outline-color: color.scale($grey-foreground-color, $alpha: -95%); |
457bb213 | 19 | |
680b5496 | 20 | $main-color: hsl(24, 90%, 50%); |
680b5496 | 21 | $main-color-lighter: lighten($main-color, 10%); |
a6d5ff76 | 22 | $main-color-lightest: lighten($main-color, 40%); |
6f03f944 | 23 | $main-color-very-light: #fff5eb; |
b788e691 | 24 | |
60c35932 | 25 | $main-hover-color: lighten($main-color, 5%); |
b788e691 | 26 | $main-background-hover-color: #e9ecef; |
60c35932 | 27 | |
0240da5c RK |
28 | $support-button: inherit; |
29 | $support-button-heart: #e83e8c; | |
2fcc2294 | 30 | |
769ac6c1 | 31 | $bg-color: #fff; |
e10c936b | 32 | $fg-color: #212529; |
41a676db C |
33 | |
34 | $red: #FF0000; | |
35 | $green: #39CC0B; | |
383bfc83 | 36 | |
22a16e36 C |
37 | $grey-actor-name: #777272; |
38 | ||
c30745f3 | 39 | $expanded-horizontal-margins: 150px; |
0f7407d9 | 40 | $not-expanded-horizontal-margins: 30px; |
c30745f3 | 41 | |
5b0ec7cd | 42 | $button-font-size: 15px; |
b33f657c C |
43 | $button-height: 30px; |
44 | ||
b33f657c | 45 | $header-height: 50px; |
383bfc83 | 46 | $header-border-color: #e9eff6; |
26c6ee80 C |
47 | $search-input-width: 375px; |
48 | ||
9a0fc840 | 49 | $menu-background: #000; |
26c6ee80 C |
50 | $menu-color: #fff; |
51 | $menu-width: 240px; | |
35c29307 | 52 | $menu-lateral-padding: 26px; |
26c6ee80 | 53 | |
218f730c | 54 | $sub-menu-background-color: #F7F7F7; |
ed5bb517 | 55 | $sub-menu-height: 81px; |
9a0fc840 | 56 | |
60c35932 | 57 | $channel-background-color: #f6ede8; |
cdeddff1 | 58 | |
02b2e482 | 59 | $banner-inverted-ratio: math.div(1, 6); |
cdeddff1 | 60 | |
900f7820 | 61 | $max-channels-width: 1200px; |
60c35932 | 62 | |
efbf0ed7 C |
63 | $footer-height: 30px; |
64 | $footer-margin: 30px; | |
65 | ||
931d3430 | 66 | $separator-border-color: rgba(0, 0, 0, 0.1); |
f0a39880 | 67 | |
435258ea | 68 | $video-miniature-margin-bottom: 15px; |
4429a4a6 C |
69 | |
70 | $video-miniature-row-name-font-size: 1.3em; | |
71 | $video-miniature-row-mobile-name-font-size: 14px; | |
72 | ||
73 | $video-miniature-row-info-font-size: 14px; | |
74 | $video-miniature-row-mobile-info-font-size: 12px; | |
75 | ||
0f7407d9 C |
76 | $video-thumbnail-height: 153px; |
77 | $video-thumbnail-width: 280px; | |
78 | $video-thumbnail-medium-height: 114px; | |
79 | $video-thumbnail-medium-width: 201px; | |
80 | $video-thumbnail-small-height: 71px; | |
81 | $video-thumbnail-small-width: 125px; | |
054a103b | 82 | |
432e7ddc | 83 | $theater-bottom-space: 115px; |
9a0fc840 | 84 | |
3bf07dd8 | 85 | $input-foreground-color: $fg-color; |
db6d617d | 86 | $input-background-color: $bg-color; |
9a0fc840 | 87 | $input-placeholder-color: #898989; |
bffee1d5 | 88 | $input-border-color: #C6C6C6; |
9a0fc840 | 89 | |
3bf07dd8 | 90 | $textarea-foreground-color: $fg-color; |
f33dc6ab C |
91 | $textarea-background-color: $bg-color; |
92 | $markdown-textarea-background-color: $grey-background-hover-color; | |
b15fe00f | 93 | |
bce47964 | 94 | $sub-menu-margin-bottom: 30px; |
4682468d | 95 | $sub-menu-margin-bottom-small-view: 10px; |
bce47964 | 96 | |
e10c936b | 97 | $activated-action-button-color: #212529; |
0240da5c | 98 | |
6a4c30de | 99 | $focus-box-shadow-form: 0 0 0 .2rem; |
5b0ec7cd C |
100 | $form-input-font-size: 15px; |
101 | $form-input-line-height: 1.4; | |
6a4c30de | 102 | |
b0c43e36 C |
103 | $video-watch-player-factor: math.div(16, 9); |
104 | $video-watch-info-margin-left: 44px; | |
105 | ||
d94b8ecf C |
106 | $primeng-breakpoint: 960px; |
107 | ||
9a0fc840 RK |
108 | /*** map theme ***/ |
109 | ||
110 | // pass variables into a sass map, | |
111 | // to be warned of non-existing variables | |
112 | $variables: ( | |
113 | --mainColor: var(--mainColor), | |
d3217560 | 114 | --mainColorLighter: var(--mainColorLighter), |
a6d5ff76 | 115 | --mainColorLightest: var(--mainColorLightest), |
6f03f944 | 116 | --mainColorVeryLight: var(--mainColorVeryLight), |
17119e4a | 117 | |
9a0fc840 | 118 | --mainHoverColor: var(--mainHoverColor), |
b788e691 | 119 | --mainBackgroundHoverColor: var(--mainBackgroundHoverColor), |
17119e4a | 120 | |
9a0fc840 RK |
121 | --mainBackgroundColor: var(--mainBackgroundColor), |
122 | --mainForegroundColor: var(--mainForegroundColor), | |
17119e4a | 123 | |
c123027f | 124 | --greyForegroundColor: var(--greyForegroundColor), |
441e453a | 125 | --greyBackgroundColor: var(--greyBackgroundColor), |
b788e691 | 126 | --greySecondaryBackgroundColor: var(--greySecondaryBackgroundColor), |
c123027f | 127 | |
1d9d9cfd RK |
128 | --menuBackgroundColor: var(--menuBackgroundColor), |
129 | --menuForegroundColor: var(--menuForegroundColor), | |
60c35932 | 130 | |
218f730c | 131 | --submenuBackgroundColor: var(--submenuBackgroundColor), |
60c35932 | 132 | --channelBackgroundColor: var(--channelBackgroundColor), |
2fcc2294 | 133 | |
3bf07dd8 | 134 | --inputForegroundColor: var(--inputForegroundColor), |
14aa8556 | 135 | --inputBackgroundColor: var(--inputBackgroundColor), |
5efab546 | 136 | --inputPlaceholderColor: var(--inputPlaceholderColor), |
a3345972 | 137 | --inputBorderColor: var(--inputBorderColor), |
2fcc2294 | 138 | |
3bf07dd8 | 139 | --textareaForegroundColor: var(--textareaForegroundColor), |
b15fe00f | 140 | --textareaBackgroundColor: var(--textareaBackgroundColor), |
f33dc6ab | 141 | --markdownTextareaBackgroundColor: var(--markdownTextareaBackgroundColor), |
b15fe00f | 142 | |
0240da5c | 143 | --actionButtonColor: var(--actionButtonColor), |
5f57df54 C |
144 | --activatedActionButtonColor: var(--activatedActionButtonColor), |
145 | ||
2fcc2294 C |
146 | --supportButtonColor: var(--supportButtonColor), |
147 | --supportButtonBackgroundColor: var(--supportButtonBackgroundColor), | |
0240da5c | 148 | --supportButtonHeartColor: var(--supportButtonHeartColor), |
2fcc2294 | 149 | |
5efab546 | 150 | --embedForegroundColor: var(--embedForegroundColor), |
d7941370 C |
151 | --embedBigPlayBackgroundColor: var(--embedBigPlayBackgroundColor), |
152 | ||
153 | --horizontalMarginContent: var(--horizontalMarginContent), | |
0f7407d9 | 154 | --videosHorizontalMarginContent: var(--videosHorizontalMarginContent), |
d7941370 | 155 | --mainColWidth: var(--mainColWidth) |
9a0fc840 RK |
156 | ); |
157 | ||
d7941370 | 158 | // SASS type check our CSS variables |
e66883b3 | 159 | @function pvar($variable) { |
d7941370 C |
160 | @if map-has-key($variables, $variable) { |
161 | @return map-get($variables, $variable); | |
162 | } @else { | |
931d3430 | 163 | @error 'ERROR: Variable #{$variable} does not exist'; |
d7941370 | 164 | } |
9a0fc840 | 165 | } |
36f2981f RK |
166 | |
167 | /*** z-index groups ***/ | |
168 | ||
169 | $zindex: ( | |
d6eace77 | 170 | miniature : 10, |
d6eace77 | 171 | sub-menu : 12500, |
43599029 | 172 | overlay : 12550, |
d6eace77 C |
173 | menu : 12600, |
174 | search-typeahead: 12650, | |
d6eace77 C |
175 | popover : 13000, |
176 | tooltip : 14000, | |
177 | loadbar : 15000, | |
43599029 | 178 | privacymsg : 17500, |
ace01da3 | 179 | root-header : 17500, |
73114c10 C |
180 | help-popover : 17600, |
181 | dropdown : 17600, | |
42d73f1c | 182 | modal : 19000, |
3e3b360c C |
183 | hotkeys : 19000, |
184 | notification : 20000 | |
36f2981f RK |
185 | ); |
186 | ||
187 | @function z($label) { | |
188 | @return map-get($zindex, $label); | |
189 | } |