Record spin added when song plays
This commit is contained in:
parent
9aad07462d
commit
01f33cdc13
1 changed files with 12 additions and 3 deletions
|
|
@ -393,12 +393,12 @@ input[type="text"], input[type="email"], input[type="password"], select {
|
|||
width: 100%;
|
||||
display: block;
|
||||
padding: 20px 0px;
|
||||
animation: spin 5s linear infinite;
|
||||
/*animation: spin 5s linear infinite;*/
|
||||
aspect-ratio: 1 / 1;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.rotate {
|
||||
.rotate, .spinning {
|
||||
animation: spin 5s linear infinite;
|
||||
}
|
||||
|
||||
|
|
@ -563,13 +563,22 @@ input[type="text"], input[type="email"], input[type="password"], select {
|
|||
margin: 15px auto;
|
||||
line-height: 2;
|
||||
max-height: 200px;
|
||||
overflow-y: scroll;
|
||||
overflow-y: scroll !important;
|
||||
padding: 20px;
|
||||
border: 1px solid #fff;
|
||||
max-width: 500px;
|
||||
border-radius: 5px;
|
||||
width: 80%;
|
||||
white-space: pre-line;
|
||||
|
||||
/* Hide scroll bar in Firefox, IE and Edge */
|
||||
scrollbar-width: none;
|
||||
-ms-overflow-style: none;
|
||||
}
|
||||
|
||||
/* Hide scroll bar in Chrome, Safari, Opera */
|
||||
.song-lyrics::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.song-control {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue