disable last_fm api, add generating last.fm links by radio.js, some changes in css

This commit is contained in:
santic-zombie
2020-04-05 01:16:12 +03:00
parent 71e751e48c
commit 9782e18724
4 changed files with 196 additions and 41 deletions

View File

@@ -21,6 +21,7 @@ body {
height: 350px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 10px;
padding: 0 5px;
color: #fff;
}
@@ -30,7 +31,7 @@ body {
}
.tagA {
width: 400px;
width: 100%;
height: 20px;
border-radius: 5px 5px 0 0;
border: #f54e4e;
@@ -50,7 +51,7 @@ body {
}
.tagB {
width: 400px;
width: 100%;
height: 20px;
border-radius: 0;
border: #f54e4e;
@@ -64,7 +65,7 @@ body {
}
.tagC {
width: 400px;
width: 100%;
height: 20px;
border-radius: 0;
border: #f54e4e;
@@ -84,8 +85,8 @@ body {
}
.tagD {
width: 400px;
height: 20px;
width: 100%;
//height: 20px;
border-radius: 0 0 5px 5px;
border: #f54e4e;
background-color: #fff;
@@ -158,3 +159,49 @@ h1 {
DIV {
text-align: center
}
@-webkit-keyframes scroll {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
100% {
-webkit-transform: translate(-100%, 0);
transform: translate(-100%, 0)
}
}
@-moz-keyframes scroll {
0% {
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
100% {
-moz-transform: translate(-100%, 0);
transform: translate(-100%, 0)
}
}
@keyframes scroll {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0)
}
}
.marquee {
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
}
.marquee span {
display: inline-block;
padding-left: 100%;
-webkit-animation: scroll 15s infinite linear;
-moz-animation: scroll 15s infinite linear;
animation: scroll 15s infinite linear;
}