Skip to content

Commit 829d6e0

Browse files
committed
1.9.2 - Updating player colors
1 parent 10d4dea commit 829d6e0

File tree

11 files changed

+102
-70
lines changed

11 files changed

+102
-70
lines changed

dist/assets/css/main.css

Lines changed: 34 additions & 25 deletions
Large diffs are not rendered by default.

scss/_common.scss

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.loading-app {
22
position: fixed;
3-
color: var(--c-primary);
3+
color: var(--c-white);
44
top: 50%;
55
left: 50%;
66
transform: translate(-50%, -50%);
@@ -123,9 +123,20 @@
123123
}
124124
&-feed {
125125
z-index: 1;
126+
overflow: hidden;
126127
.app-content {
127128
padding: 0 20px;
128129
}
130+
&:before {
131+
content: '';
132+
display: block;
133+
position: absolute;
134+
width: 100%;
135+
height: 330px;
136+
left: 0;
137+
top: -230px;
138+
background: radial-gradient(ellipse at center, rgba(0, 208, 255, 0.42) 0%, rgba(0,0,0,0) 70%);
139+
}
129140
}
130141
}
131142

scss/_controls.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
.duration-range-container {
168168
position: relative;
169169
height: 9px;
170-
background-color: var(--c-light-gray);
170+
background-color: var(--c-gray);
171171
width: 100%;
172172
margin-top: 10px;
173173
margin-bottom: 10px;
@@ -222,7 +222,7 @@
222222
position: relative;
223223
width: 80px;
224224
height: 8px;
225-
background-color: var(--c-light-gray);
225+
background-color: var(--c-gray);
226226
border-radius: 5px;
227227
.volume-input-shadow {
228228
position: absolute;

scss/_forms.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ select {
1010
&:before {
1111
content: '';
1212
display: block;
13-
background-color: var(--c-black);
13+
background-color: var(--c-gray);
1414
height: 20px;
1515
width: 40px;
1616
border-radius: 50px;
@@ -52,11 +52,11 @@ input[type="radio"]:checked {
5252
.form-field {
5353
margin-left: auto;
5454
padding: 10px 15px;
55-
border: 1px solid var(--c-gray);
55+
border: 1px solid var(--c-black);
5656
color: var(--c-white);
5757
min-width: 250px;
5858
font-weight: 300;
59-
background-color: var(--c-black);
59+
background-color: var(--c-gray);
6060
border-radius: 0;
6161
outline: 0;
6262
&:disabled {

scss/_header.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@
145145

146146
.logo-svg {
147147
display: block;
148-
@include icon-svg(logo, 111px, 25px, white, white, #17171d);
148+
@include icon-svg(logo, 111px, 25px, red, white, white);
149149
transition: all 0.1s ease-out;
150150
&:hover {
151-
@include icon-svg(logo, 111px, 25px, red, white, white);
151+
@include icon-svg(logo, 111px, 25px, white, white, #17171d);
152152
}
153153
}
154154

@@ -194,7 +194,7 @@
194194
.device-bar {
195195
height: 45px;
196196
width: 100%;
197-
background-color: var(--c-black);
197+
background-color: var(--c-gray);
198198
position: fixed;
199199
top: 0;
200200
z-index: 2;

scss/_responsive.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
position: fixed;
6060
height: 100%;
6161
z-index: 2;
62-
background-color: var(--c-black);
62+
background-color: #14171f;
6363
transition: all 0.6s ease-in-out;
6464
}
6565
&-2,

scss/_search.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
margin: 0;
2020
outline: 0;
2121
position: relative;
22-
background-color: rgba(255, 255, 255, 0.1);
22+
background-color: var(--c-gray);
2323
color: inherit;
2424
z-index: 1;
2525
transition: all 0.1s ease-out;

scss/_variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ $f-32: 32px;
6060

6161
// If you don't use darken and other sass functions use this
6262
:root {
63-
--c-base: #17171d;
63+
// un albastru smecher de tinut minte #1e232f old -> #17171d
64+
--c-base: #1e232f;
6465
--c-primary: #d42222;
6566
--c-primary-active: #bb2222;
6667
--c-primary-active-focus: #9c1717;

scss/_videos.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ iframe {
4545
.video-item {
4646
background-color: var(--c-black);
4747
&-settings {
48-
background-color: rgba(97, 97, 105, 0.4);
48+
background-color: rgba(30, 35, 47, 0.6);
4949
}
5050
}
5151
&::-webkit-scrollbar {
@@ -105,8 +105,9 @@ iframe {
105105
font-size: $f-14;
106106
margin: 0;
107107
}
108-
.video-item-autor {
108+
&-autor {
109109
font-size: $f-12;
110+
color: #888888;
110111
}
111112
&-image {
112113
display: block;
@@ -383,6 +384,7 @@ iframe {
383384
height: calc(100% - 246px);
384385
width: calc(100% - 40px);
385386
max-height: none;
387+
background-color: var(--c-gray);
386388
.video-item {
387389
&:first-child {
388390
display: none !important;

scss/theme/light.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
color: var(--c-white);
88
}
99

10-
.logo-svg {
11-
@include icon-svg(logo, 111px, 25px, red, white, white);
12-
}
13-
1410
.col-2,
1511
.col-3 {
1612
background-color: var(--c-white);
@@ -113,7 +109,7 @@ nav {
113109
&-settings {
114110
background-color: transparent;
115111
}
116-
&-content > p {
112+
&-content {
117113
color: var(--c-white);
118114
}
119115
}
@@ -163,7 +159,7 @@ nav {
163159
background-color: var(--c-white);
164160
&.grid-list {
165161
.video-item {
166-
&-content > p {
162+
&-content {
167163
color: var(--c-white);
168164
}
169165
}
@@ -260,4 +256,8 @@ input[type="checkbox"]:checked + label .round-check:before, input[type="radio"]:
260256
background-color: var(--c-primary);
261257
border: 1px solid var(--c-primary-active);
262258
}
259+
}
260+
261+
.app-feed:before {
262+
display: none;
263263
}

0 commit comments

Comments
 (0)