Add a css effect on download links.
This commit is contained in:
parent
9c92d22e1a
commit
ba53d0ca98
12
style.css
12
style.css
@ -21,6 +21,8 @@ body{
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
|
animation: colorchange 3s;
|
||||||
|
-webkit-animation: colorchange 3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#input-area, #dlarea {
|
#input-area, #dlarea {
|
||||||
@ -38,3 +40,13 @@ body{
|
|||||||
#dlarea{
|
#dlarea{
|
||||||
background: #4caf50;
|
background: #4caf50;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes colorchange{
|
||||||
|
50% {background: #c33d3d;}
|
||||||
|
100% {background: transparent;}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes colorchange{
|
||||||
|
50% {background: #c33d3d;}
|
||||||
|
100% {background: transparent;}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user