mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
5476575d10
+ fix `play next` bug + add new folder banner image + add new now playing component + move to gray4 for accent color + increase image sizes, for clean UI
106 lines
1.4 KiB
SCSS
106 lines
1.4 KiB
SCSS
.t-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.image {
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
transition: transform 0.3s ease-in-out;
|
|
}
|
|
|
|
.ellipsis {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ellip {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.rounded {
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.rounded-sm {
|
|
border-radius: $small;
|
|
}
|
|
|
|
.rounded-md {
|
|
border-radius: $medium;
|
|
}
|
|
|
|
.circular {
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.bg-black {
|
|
background-color: $gray4;
|
|
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.heading {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
font-size: 0.9rem !important;
|
|
color: inherit;
|
|
border-radius: $small;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 2.25rem;
|
|
background: linear-gradient(70deg, $gray3, $gray2);
|
|
|
|
&:hover {
|
|
background-image: linear-gradient(70deg, #234ece, $darkblue);
|
|
}
|
|
}
|
|
|
|
.btn-active {
|
|
background-image: linear-gradient(70deg, #234ece, $darkblue);
|
|
}
|
|
|
|
.separator {
|
|
border-top: 0.1px $separator solid;
|
|
color: transparent;
|
|
margin: $small 0 $small 0;
|
|
}
|
|
|
|
.no-border {
|
|
border: none;
|
|
}
|
|
|
|
.noscroll {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.abs {
|
|
position: absolute;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.card-dark {
|
|
background-color: #fff;
|
|
}
|