diff options
Diffstat (limited to 'css')
| -rw-r--r-- | css/sally.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/css/sally.css b/css/sally.css index b1c1098..093971d 100644 --- a/css/sally.css +++ b/css/sally.css @@ -178,6 +178,22 @@ textarea { font-size:12pt; width: 37vw; height: 300px; background: #333; color: outline: 0; border: 1px solid #0f0; color: #0f0; - width: 152px; + width: 100%; display: none; } +#upload_button.uploading { + background: transparent; + border: 0; + font-size: 16px; + font-family: 'FixedsysExcelsior301Regular'; + -webkit-animation: rainbow 1.0s infinite; + animation: rainbow 2.0s infinite; + padding: 0; margin: 0; +} +@keyframes rainbow { + 0% { color: hsl(0,100%,50%) } + 33% { color: hsl(90,100%,50%) } + 50% { color: #fff } + 66% { color: hsl(320,100%,50%) } + 100% { color: hsl(360,100%,50%) } +} |
