|
|
@ -3,6 +3,7 @@ body { |
|
|
|
background-image: url("/pic/bg.png"); |
|
|
|
background-image: url("/pic/bg.png"); |
|
|
|
background-repeat: no-repeat; |
|
|
|
background-repeat: no-repeat; |
|
|
|
background-position: top center; |
|
|
|
background-position: top center; |
|
|
|
|
|
|
|
background-size: cover; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#song{ |
|
|
|
#song{ |
|
|
@ -10,7 +11,7 @@ body { |
|
|
|
height: 300px; |
|
|
|
height: 300px; |
|
|
|
margin: auto; |
|
|
|
margin: auto; |
|
|
|
justify-content : center; |
|
|
|
justify-content : center; |
|
|
|
background-color: rgba(0, 0, 0, 0.55); |
|
|
|
background-color: rgba(0, 0, 0, 0.7); |
|
|
|
border-radius: 10px; |
|
|
|
border-radius: 10px; |
|
|
|
color: #fff; |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
} |
|
|
@ -46,8 +47,31 @@ body { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
h1::before { |
|
|
|
|
|
|
|
content: ''; |
|
|
|
|
|
|
|
display: inline-block; |
|
|
|
|
|
|
|
margin:0 10px; |
|
|
|
|
|
|
|
width: 25px; |
|
|
|
|
|
|
|
height: 25px; |
|
|
|
|
|
|
|
-webkit-border-radius: 25px; |
|
|
|
|
|
|
|
-moz-border-radius: 25px; |
|
|
|
|
|
|
|
border-radius: 25px; |
|
|
|
|
|
|
|
background: red; |
|
|
|
|
|
|
|
animation: blink 3s linear infinite; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes blink{ |
|
|
|
|
|
|
|
0%{opacity: 0;} |
|
|
|
|
|
|
|
25%{opacity: .5;} |
|
|
|
|
|
|
|
50%{opacity: 1;} |
|
|
|
|
|
|
|
75%{opacity: .5;} |
|
|
|
|
|
|
|
100%{opacity: 0;} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
h1 { |
|
|
|
h1 { |
|
|
|
text-align: center |
|
|
|
text-align: center |
|
|
|
|
|
|
|
float:left; |
|
|
|
|
|
|
|
margin:10px 50px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
DIV { |
|
|
|
DIV { |
|
|
|