Browse Source

Add a css effect on download links.

master
kj 5 years ago
parent
commit
ba53d0ca98
  1. 12
      style.css

12
style.css

@ -21,6 +21,8 @@ body{ @@ -21,6 +21,8 @@ body{
padding: 5px;
text-decoration: none;
border: 1px solid;
animation: colorchange 3s;
-webkit-animation: colorchange 3s;
}
#input-area, #dlarea {
@ -38,3 +40,13 @@ body{ @@ -38,3 +40,13 @@ body{
#dlarea{
background: #4caf50;
}
@keyframes colorchange{
50% {background: #c33d3d;}
100% {background: transparent;}
}
@-webkit-keyframes colorchange{
50% {background: #c33d3d;}
100% {background: transparent;}
}

Loading…
Cancel
Save