summaryrefslogtreecommitdiff
path: root/StoneIsland/www/css
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/css')
-rw-r--r--StoneIsland/www/css/index.css26
-rw-r--r--StoneIsland/www/css/nav.css4
2 files changed, 28 insertions, 2 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
diff --git a/StoneIsland/www/css/nav.css b/StoneIsland/www/css/nav.css
index e5c03010..3c4e5e3e 100644
--- a/StoneIsland/www/css/nav.css
+++ b/StoneIsland/www/css/nav.css
@@ -18,8 +18,8 @@
}
.ios #nav,
.ios #content {
- top: 40px;
- height: -webkit-calc(100% - 40px);
+ top: 20px;
+ height: -webkit-calc(100% - 20px);
}
.nav #nav {
-webkit-transform: translateZ(0) translateX(0);