summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-07-15 21:06:09 -0400
committerJules Laplace <jules@okfoc.us>2015-07-15 21:06:09 -0400
commitf50f177a90b66e81b1f8bf57963c4566f413026d (patch)
treef4fce0ba8de9cdb63a9b250b6a23ad0906f3b856 /css
parented9aba1964c24850f41ebaba1bba8ffa8059fb84 (diff)
upload style
Diffstat (limited to 'css')
-rw-r--r--css/sally.css18
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%) }
+}