diff options
author | Roman Gräf <roman.graef@gmail.com> | 2017-11-01 12:39:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 12:39:11 +0100 |
commit | e788ee67564c59504bfbea8964c62f7a6bcdbf13 (patch) | |
tree | 6026738857acf56b80d3438f47cc0244e5730bb8 /res/loading.css | |
parent | 77d129edd458fe4cdc2e0011e934cac47d525624 (diff) | |
download | ichtml-e788ee67564c59504bfbea8964c62f7a6bcdbf13.tar.gz ichtml-e788ee67564c59504bfbea8964c62f7a6bcdbf13.tar.bz2 ichtml-e788ee67564c59504bfbea8964c62f7a6bcdbf13.zip |
Add files via upload
Diffstat (limited to 'res/loading.css')
-rw-r--r-- | res/loading.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/res/loading.css b/res/loading.css new file mode 100644 index 0000000..6a1fb67 --- /dev/null +++ b/res/loading.css @@ -0,0 +1,19 @@ +.spinner {
+ /* Shamelessly stolen from https://www.w3schools.com/howto/howto_css_loader.asp */
+ border: 16px solid #d6d6d6; /* Light grey */
+ border-top: 16px solid #3498db; /* Blue */
+ border-radius: 50%;
+ width: 120px;
+ height: 120px;
+ animation: spinner 2s linear infinite;
+}
+
+
+@keyframes spinner {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}
|