summaryrefslogtreecommitdiff
path: root/StoneIsland/www/css/index.css
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-16 15:06:56 -0400
committerJules Laplace <jules@okfoc.us>2015-09-16 15:06:56 -0400
commit14699818d58beef4b9b20b3ddb3e03641c0b7f21 (patch)
tree954ead80ac9b3fed5e75fa18eac4ab157a642a43 /StoneIsland/www/css/index.css
parent0ff689f69ccf98d0a3e6f4e190fa3e44cf44c44c (diff)
populate collectionview
Diffstat (limited to 'StoneIsland/www/css/index.css')
-rw-r--r--StoneIsland/www/css/index.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/StoneIsland/www/css/index.css b/StoneIsland/www/css/index.css
index 161c41a6..3c2a4d10 100644
--- a/StoneIsland/www/css/index.css
+++ b/StoneIsland/www/css/index.css
@@ -16,3 +16,29 @@ body {
font-family: pfd, sans-serif;
font-size: 12px;
}
+
+.loader {
+ z-index: 2;
+ width: 80px;
+ height: 80px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -40px;
+ margin-left: -40px;
+ display: none;
+}
+.loader:before {
+ content: '';
+ border-radius: 50%;
+ border-top: 3px solid #fff;
+ border-right: 3px solid transparent;
+ animation: loading .5s linear infinite;
+ -webkit-animation: loading .5s linear infinite;
+}
+@keyframes loading {
+ to {transform: rotate(360deg)}
+}
+@-webkit-keyframes loading {
+ to {-webkit-transform: rotate(360deg)}
+} \ No newline at end of file