mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
prevent type coercion
- remove unused imports - minor refactors and cleanups
This commit is contained in:
@@ -3,11 +3,9 @@ input[type="range"] {
|
||||
margin-right: 15px;
|
||||
width: calc(100% - 2px);
|
||||
height: 0.3rem;
|
||||
background: rgb(59, 57, 57);
|
||||
border-radius: 5px;
|
||||
background-image: linear-gradient($blue, $blue);
|
||||
background-size: 0% 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 0 100%;
|
||||
background: rgb(59, 57, 57) linear-gradient($blue, $blue) no-repeat;
|
||||
}
|
||||
|
||||
/* Input Thumb */
|
||||
|
||||
@@ -154,7 +154,7 @@ button {
|
||||
}
|
||||
|
||||
.shadow-sm {
|
||||
box-shadow: 0rem 0rem .5rem rgb(0, 0, 0);
|
||||
box-shadow: 0 0 .5rem rgb(0, 0, 0);
|
||||
}
|
||||
|
||||
.shadow-md {
|
||||
@@ -195,46 +195,46 @@ button {
|
||||
|
||||
@-webkit-keyframes similarAlbums {
|
||||
0% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 63%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes similarAlbums {
|
||||
0% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 63%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
}
|
||||
@-o-keyframes similarAlbums {
|
||||
0% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 63%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
}
|
||||
@keyframes similarAlbums {
|
||||
0% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 63%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 38%;
|
||||
background-position: 0 38%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user