summaryrefslogtreecommitdiff
path: root/StoneIsland/www/css/nav.css
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-15 16:54:38 -0400
committerJules Laplace <jules@okfoc.us>2015-09-15 16:56:28 -0400
commitd5855a5d5b7c16a2c262ad2b98aabe5e8dd161f0 (patch)
tree6debdaea50594aa9a57707d2cb2e360b5f5aa6d8 /StoneIsland/www/css/nav.css
parent007ef2401acf0a98d7412dba06e1acd5f3957a1b (diff)
begin writing navigation css
Diffstat (limited to 'StoneIsland/www/css/nav.css')
-rw-r--r--StoneIsland/www/css/nav.css101
1 files changed, 101 insertions, 0 deletions
diff --git a/StoneIsland/www/css/nav.css b/StoneIsland/www/css/nav.css
new file mode 100644
index 00000000..69a6f686
--- /dev/null
+++ b/StoneIsland/www/css/nav.css
@@ -0,0 +1,101 @@
+
+/* NAV BAR */
+
+#nav {
+ width: 300px;
+ -webkit-transform: translateZ(0) translateX(-300px);
+ -webkit-transition: -webkit-transform 0.3s;
+}
+#content {
+ position: absolute;
+ top: 0; left: 0;
+ width: 100%; height: 100%;
+ overflow: hidden;
+ -webkit-transform: translateZ(0) translateX(0px);
+ -webkit-transition: -webkit-transform 0.3s;
+}
+.ios #content {
+ top: 40px;
+ height: -webkit-calc(100% - 40px);
+}
+.nav #nav {
+ -webkit-transform: translateZ(0) translateX(0);
+}
+.nav #content {
+ -webkit-transform: translateZ(0) translateX(300px);
+}
+
+
+/* INTRO PAGE WITH SPINNING COMPASS */
+
+#intro {
+ display: none;
+}
+.intro #intro {
+ display: block;
+}
+.intro #header,
+.intro #footer {
+ display: none;
+}
+#compass {
+ position: absolute;
+ top: 50%; left: 50%;
+}
+#compass .store {
+}
+#compass .hub {
+}
+#compass .story {
+}
+#compass .archive {
+}
+#compass .latlng {
+}
+
+
+/* HEADER AND FOOTER ON MOST PAGES */
+
+#header {
+ display: block;
+ position: absolute;
+ top: 0; left: 0; width: 100%;
+}
+#footer {
+ display: block;
+ position: absolute;
+ bottom: 0; left: 0; width: 100%;
+}
+#footer span {
+ display: none;
+}
+
+
+/* CURTAIN FOR LOGIN AND SELECTOR VIEWS */
+
+#curtain {
+ display: none;
+ position: absolute;
+ top: 0; left: 0;
+ width: 100%; height: 100%;
+ background: rgba(238,238,238,0.9);
+}
+
+
+/* LOGIN / SIGNUP SCREEN */
+
+#login {
+ display: none;
+ position: absolute;
+ top: 50%; left: 50%;
+ -webkit-transform: translateX(-50%) translateY(-50%);
+ background: #fff;
+}
+
+
+/* SELECTOR */
+
+#selector {
+ display: none;
+}
+