Skip to content

Commit c7235ed

Browse files
committed
updated style
1 parent 69765e3 commit c7235ed

File tree

2 files changed

+30
-35
lines changed

2 files changed

+30
-35
lines changed

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"liveServer.settings.https": {
3+
"enable": true, //set it true to enable the feature.
4+
"cert": "C:\\Users\\Asus\\server.crt", //full path of the certificate
5+
"key": "C:\\Users\\Asus\\server.key", //full path of the private key
6+
"passphrase": "afonso"
7+
}
8+
}

assets/dark.css

Lines changed: 22 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ body {
243243
user-select: none;
244244
overflow-y: scroll;
245245
overflow-x: hidden;
246-
background-color: var(--black);
246+
background-color: rgb(8,8,8);
247247
}
248248
/* #endregion */
249249

@@ -261,25 +261,25 @@ body {
261261
position: absolute;
262262
top: 0;
263263
left: 0;
264-
background: linear-gradient(0deg, var(--black) 5%, transparent 40%);
264+
background: linear-gradient(0deg, #080808 5%, transparent 40%);
265265
pointer-events: none;
266266
touch-action: none;
267-
display: none;
268267
}
269268
.ol-attribution {
270269
top: .5em;
271270
left: .5em;
272271
bottom: unset !important;
273272
right: unset !important;
274273
border-radius: 999px !important;
274+
background-color: rgba(8, 8, 8, 0.7) !important;
275275
}
276276
.ol-attribution button {
277277
all: unset;
278278
height: 1.375em;
279279
width: 1.375em;
280280
line-height: .4em;
281281
border-radius: 999px;
282-
background-color: var(--glass-black);
282+
background-color: rgba(8, 8, 8, 0.7);
283283
color: var(--green);
284284
text-align: center;
285285
font-family: Roboto, Arial, sans-serif;
@@ -290,6 +290,9 @@ body {
290290
color: var(--green);
291291
line-height: .4em;
292292
}
293+
.ol-attribution ul {
294+
text-shadow: none !important;
295+
}
293296
/* #endregion */
294297

295298
/* #region Logo */
@@ -527,7 +530,7 @@ input[type="search"]::-webkit-search-results-decoration {
527530

528531
/* #region Station card */
529532
.station-card {
530-
background-color: var(--black);
533+
background-color: #181818;
531534
width: 90vw;
532535
height: 55vw;
533536
position: absolute;
@@ -567,7 +570,7 @@ input[type="search"]::-webkit-search-results-decoration {
567570
bottom: calc(5vw + 20% + 2vw);
568571
}
569572
.station-card #docksButton {
570-
background-color: var(--black);
573+
background-color: transparent;
571574
outline: 2px solid var(--white);
572575
width: 42.5%;
573576
height: 20%;
@@ -580,7 +583,7 @@ input[type="search"]::-webkit-search-results-decoration {
580583
align-items: center;
581584
color: var(--gray);
582585
box-shadow:
583-
5px 5px 15px 0px var(--shadow-white),
586+
5px 5px 8px 0px var(--shadow-white),
584587
0px 0px 5px 0px var(--shadow-white) inset;
585588
}
586589
.station-card #bikesImage {
@@ -592,7 +595,7 @@ input[type="search"]::-webkit-search-results-decoration {
592595
bottom: calc(5vw + 20% + 2vw);
593596
}
594597
.station-card #bikesButton {
595-
background-color: var(--black);
598+
background-color: transparent;
596599
outline: 2px solid var(--green);
597600
width: 42.5%;
598601
height: 20%;
@@ -605,7 +608,7 @@ input[type="search"]::-webkit-search-results-decoration {
605608
align-items: center;
606609
color: var(--green);
607610
box-shadow:
608-
5px 5px 15px 0px var(--shadow-green),
611+
5px 5px 8px 0px var(--shadow-green),
609612
0px 0px 5px 0px var(--shadow-green) inset;
610613
}
611614
.station-card #bikesButtonDisabled {
@@ -1216,9 +1219,6 @@ input[type="search"]::-webkit-search-results-decoration {
12161219
display: flex;
12171220
justify-content: center;
12181221
align-items: center;
1219-
box-shadow:
1220-
0px 4px 6px 0px var(--shadow-green),
1221-
0px 0px 5px 0px var(--shadow-green) inset;
12221222
}
12231223
.user-settings #topUserContainer #userImage #userInitialsSettings {
12241224
font-size: 8vh;
@@ -1260,9 +1260,7 @@ input[type="search"]::-webkit-search-results-decoration {
12601260
justify-content: center;
12611261
position: relative;
12621262
outline: none;
1263-
box-shadow:
1264-
0px 4px 6px 0px var(--shadow-green),
1265-
0px 0px 5px 0px var(--shadow-green) inset;
1263+
box-shadow: 0px 1px 6px 0px var(--green);
12661264
}
12671265
.user-settings #balanceAndBonusContainer #balanceContainer #balanceLabel,
12681266
.user-settings #balanceAndBonusContainer #bonusContainer #bonusLabel {
@@ -1291,9 +1289,7 @@ input[type="search"]::-webkit-search-results-decoration {
12911289
display: flex;
12921290
position: relative;
12931291
outline: none;
1294-
box-shadow:
1295-
0px 4px 6px 0px var(--shadow-green),
1296-
0px 0px 5px 0px var(--shadow-green) inset;
1292+
box-shadow: 0px 1px 6px 0px var(--green);
12971293
}
12981294
.user-settings #subscriptionContainer div #cardSVG {
12991295
position: absolute;
@@ -1337,9 +1333,6 @@ input[type="search"]::-webkit-search-results-decoration {
13371333
display: flex;
13381334
align-items: center;
13391335
gap: 1dvh;
1340-
box-shadow:
1341-
0px 4px 6px 0px var(--shadow-green),
1342-
0px 0px 5px 0px var(--shadow-green) inset;
13431336
}
13441337
.user-settings #statisticsMenuButton i,
13451338
.user-settings #tripHistoryButton i {
@@ -1362,9 +1355,7 @@ input[type="search"]::-webkit-search-results-decoration {
13621355
justify-content: center;
13631356
position: relative;
13641357
outline: none;
1365-
box-shadow:
1366-
0px 4px 6px 0px var(--shadow-green),
1367-
0px 0px 5px 0px var(--shadow-green) inset;
1358+
box-shadow: 0px 1px 6px 0px var(--green);
13681359
}
13691360

13701361
.user-settings #settingsContainer #proxy > div:first-child {
@@ -1387,21 +1378,20 @@ input[type="search"]::-webkit-search-results-decoration {
13871378
border-radius: 999px;
13881379
display: flex;
13891380
align-items: center;
1381+
padding: 0;
13901382
padding-left: 5%;
13911383
color: var(--green);
13921384
border: none;
13931385
font-size: medium;
1394-
box-shadow:
1395-
0px 4px 6px 0px var(--shadow-green),
1396-
0px 0px 5px 0px var(--shadow-green) inset;
1386+
box-shadow: 0px 1px 6px 0px var(--green);
13971387
}
13981388

13991389
.user-settings #settingsContainer #proxy #resetProxyButton {
14001390
background-color: var(--pure-black);
14011391
position: absolute;
14021392
right: 13%;
1403-
top: calc(35%);
1404-
height: calc(40%);
1393+
top: 35%;
1394+
height: 40%;
14051395
width: 20%;
14061396
padding-left: 5%;
14071397
text-align: center;
@@ -1416,9 +1406,9 @@ input[type="search"]::-webkit-search-results-decoration {
14161406
.user-settings #settingsContainer #proxy #setProxyButton {
14171407
background-color: var(--green);
14181408
position: absolute;
1419-
right: calc(5%);
1420-
top: calc(35%);
1421-
height: calc(40%);
1409+
right: 5%;
1410+
top: 35%;
1411+
height: 40%;
14221412
aspect-ratio: 1/1;
14231413
text-align: center;
14241414
border-radius: 999px;
@@ -1448,9 +1438,6 @@ input[type="search"]::-webkit-search-results-decoration {
14481438
font-size: large;
14491439
margin-left: auto;
14501440
margin-right: 5vw;
1451-
box-shadow:
1452-
0px 4px 6px 0px var(--shadow-green),
1453-
0px 0px 5px 0px var(--shadow-green) inset;
14541441
}
14551442

14561443
.user-settings #proxyNotWorking {

0 commit comments

Comments
 (0)