client: migrate to solid dark mode

This commit is contained in:
geoffrey45
2022-01-05 05:45:55 +03:00
parent 1cb6843dc3
commit 0340b64b04
15 changed files with 89 additions and 112 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
// colors
$card-dark: #131313b2;
$card-dark: #000203;
$red: #df4646;
$blue: rgb(5, 80, 150);
$green: rgb(67, 148, 67);
+26 -7
View File
@@ -20,7 +20,6 @@ body {
.heading {
font-size: small;
font-weight: bold;
color: #ffffffb2;
display: flex;
align-items: center;
}
@@ -84,7 +83,7 @@ a {
padding-top: 0.5rem;
margin: 0.5rem 0 0.5rem 0.5rem;
border-radius: 0.5rem;
background-color: #131313b2;
background-color: $card-dark;
}
.collapsed .l-sidebar {
@@ -129,11 +128,11 @@ a {
margin-bottom: 0.5em;
}
@media (max-width: 70em) {
.r-sidebar {
display: none;
}
}
// @media (max-width: 70em) {
// .r-sidebar {
// display: none;
// }
// }
.image {
background-position: center;
@@ -220,3 +219,23 @@ a {
background-position: 0% 38%;
}
}
.now-playing-track {
height: 2rem;
width: 2rem;
border-radius: 50%;
background-color: #fff;
margin-top: 0rem;
background-size: 60%;
}
.active {
background-image: url(../../assets/icons/playing.gif);
transition: all 0.3s ease-in-out;
}
.not_active {
background-image: url(../../assets/icons/playing.webp);
transition: all 0.3s ease-in-out;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB