Skip to content

Commit 70c5ec1

Browse files
committed
1.9.2 - Updating colors
1 parent 69c8fc5 commit 70c5ec1

File tree

6 files changed

+54
-22
lines changed

6 files changed

+54
-22
lines changed

dist/assets/css/main.css

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
}
4242

4343
:root {
44-
--c-base: #1e232f;
44+
--c-base: #212129;
4545
--c-primary: red;
4646
--c-primary-active: #d42222;
4747
--c-primary-active-focus: #bb2222;
@@ -113,6 +113,17 @@ a:active {
113113
height: 100%;
114114
}
115115

116+
#app-container:before {
117+
content: '';
118+
background-image: url(http://blog.marmakoide.org/wp-content/uploads/2012/06/noise-good.png);
119+
position: absolute;
120+
top: 0;
121+
left: 0;
122+
width: 100%;
123+
height: 100%;
124+
opacity: 0.025;
125+
}
126+
116127
.btn {
117128
display: inline-block;
118129
color: var(--c-white);
@@ -388,7 +399,7 @@ a:active {
388399
height: 330px;
389400
left: 0;
390401
top: -230px;
391-
background: radial-gradient(ellipse at center, rgba(0, 208, 255, 0.42) 0%, transparent 70%);
402+
background: radial-gradient(ellipse at center, rgba(162, 173, 214, 0.42) 0%, transparent 70%);
392403
}
393404

394405
#youtube-player {
@@ -1432,7 +1443,7 @@ iframe {
14321443
}
14331444

14341445
#search-video-list .video-item-settings {
1435-
background-color: rgba(30, 35, 47, 0.6);
1446+
background-color: rgba(41, 41, 53, 0.5);
14361447
}
14371448

14381449
#search-video-list::-webkit-scrollbar {
@@ -1464,8 +1475,8 @@ iframe {
14641475
border-radius: 3px;
14651476
padding: 4px 8px;
14661477
margin-top: 2px;
1467-
text-transform: capitalize;
1468-
font-size: 11px;
1478+
text-transform: uppercase;
1479+
font-size: 10px;
14691480
border: none;
14701481
display: block;
14711482
user-select: none;
@@ -1568,7 +1579,7 @@ iframe {
15681579
}
15691580

15701581
.video-item-settings > button {
1571-
background-color: var(--c-light-gray);
1582+
background-color: var(--c-black);
15721583
color: inherit;
15731584
height: 30px;
15741585
width: 30px;
@@ -1638,7 +1649,7 @@ iframe {
16381649
}
16391650

16401651
.video-item.active {
1641-
background-color: var(--c-black);
1652+
background-color: var(--c-gray);
16421653
}
16431654

16441655
.video-item.active .video-item-hint {

scss/_common.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
height: 330px;
136136
left: 0;
137137
top: -230px;
138-
background: radial-gradient(ellipse at center, rgba(0, 208, 255, 0.42) 0%, rgba(0,0,0,0) 70%);
138+
background: radial-gradient(ellipse at center, rgba(162, 173, 214, 0.42) 0%, rgba(0,0,0,0) 70%);
139139
}
140140
}
141141
}

scss/_global.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,14 @@ a {
4040
#app-container {
4141
position: relative;
4242
height: 100%;
43+
&:before {
44+
content: '';
45+
background-image: url(http://blog.marmakoide.org/wp-content/uploads/2012/06/noise-good.png);
46+
position: absolute;
47+
top: 0;
48+
left: 0;
49+
width: 100%;
50+
height: 100%;
51+
opacity: 0.025;
52+
}
4353
}

scss/_variables.scss

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

6161
// If you don't use darken and other sass functions use this
6262
:root {
63-
// un albastru smecher de tinut minte #1e232f old -> #17171d
64-
--c-base: #1e232f;
63+
// un albastru smecher de tinut minte #1e232f old -> #17171d #1b2029
64+
--c-base: #212129;
6565
--c-primary: red;
6666
--c-primary-active: #d42222;
6767
--c-primary-active-focus: #bb2222;

scss/_videos.scss

Lines changed: 5 additions & 5 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(30, 35, 47, 0.6);
48+
background-color: rgba(41, 41, 53, 0.5);
4949
}
5050
}
5151
&::-webkit-scrollbar {
@@ -74,8 +74,8 @@ iframe {
7474
border-radius: 3px;
7575
padding: 4px 8px;
7676
margin-top: 2px;
77-
text-transform: capitalize;
78-
font-size: $f-11;
77+
text-transform: uppercase;
78+
font-size: $f-10;
7979
border: none;
8080
display: block;
8181
user-select: none;
@@ -163,7 +163,7 @@ iframe {
163163
justify-content: center;
164164
transition: all 0.1s ease-in-out;
165165
> button {
166-
background-color: var(--c-light-gray);
166+
background-color: var(--c-black);
167167
color: inherit;
168168
height: 30px;
169169
width: 30px;
@@ -231,7 +231,7 @@ iframe {
231231
}
232232
}
233233
&.active {
234-
background-color: var(--c-black);
234+
background-color: var(--c-gray);
235235
.video-item-hint {
236236
display: inline-block;
237237
}

src/assets/css/main.css

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
}
4242

4343
:root {
44-
--c-base: #1e232f;
44+
--c-base: #212129;
4545
--c-primary: red;
4646
--c-primary-active: #d42222;
4747
--c-primary-active-focus: #bb2222;
@@ -113,6 +113,17 @@ a:active {
113113
height: 100%;
114114
}
115115

116+
#app-container:before {
117+
content: '';
118+
background-image: url(http://blog.marmakoide.org/wp-content/uploads/2012/06/noise-good.png);
119+
position: absolute;
120+
top: 0;
121+
left: 0;
122+
width: 100%;
123+
height: 100%;
124+
opacity: 0.025;
125+
}
126+
116127
.btn {
117128
display: inline-block;
118129
color: var(--c-white);
@@ -388,7 +399,7 @@ a:active {
388399
height: 330px;
389400
left: 0;
390401
top: -230px;
391-
background: radial-gradient(ellipse at center, rgba(0, 208, 255, 0.42) 0%, transparent 70%);
402+
background: radial-gradient(ellipse at center, rgba(162, 173, 214, 0.42) 0%, transparent 70%);
392403
}
393404

394405
#youtube-player {
@@ -1432,7 +1443,7 @@ iframe {
14321443
}
14331444

14341445
#search-video-list .video-item-settings {
1435-
background-color: rgba(30, 35, 47, 0.6);
1446+
background-color: rgba(41, 41, 53, 0.5);
14361447
}
14371448

14381449
#search-video-list::-webkit-scrollbar {
@@ -1464,8 +1475,8 @@ iframe {
14641475
border-radius: 3px;
14651476
padding: 4px 8px;
14661477
margin-top: 2px;
1467-
text-transform: capitalize;
1468-
font-size: 11px;
1478+
text-transform: uppercase;
1479+
font-size: 10px;
14691480
border: none;
14701481
display: block;
14711482
user-select: none;
@@ -1568,7 +1579,7 @@ iframe {
15681579
}
15691580

15701581
.video-item-settings > button {
1571-
background-color: var(--c-light-gray);
1582+
background-color: var(--c-black);
15721583
color: inherit;
15731584
height: 30px;
15741585
width: 30px;
@@ -1638,7 +1649,7 @@ iframe {
16381649
}
16391650

16401651
.video-item.active {
1641-
background-color: var(--c-black);
1652+
background-color: var(--c-gray);
16421653
}
16431654

16441655
.video-item.active .video-item-hint {

0 commit comments

Comments
 (0)