Add a css effect on download links.

This commit is contained in:
kj 2019-07-15 14:18:57 -04:00
parent 9c92d22e1a
commit ba53d0ca98
1 changed files with 12 additions and 0 deletions

View File

@ -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;}
}