From 37581b7e45044aad1b2436292df7f4b075f913b9 Mon Sep 17 00:00:00 2001 From: Mattias Erming Date: Sun, 15 Jun 2014 18:10:20 +0200 Subject: [PATCH] Added 'Sign in' page placeholder --- client/css/style.css | 98 ++++++++++++++++++++++++++++++++++++++++++-- client/index.html | 17 +++++++- client/js/chat.js | 5 +++ 3 files changed, 114 insertions(+), 6 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index a66ef36..8d3d8ef 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1,14 +1,17 @@ /* http://www.google.com/fonts/specimen/Lato */ -@import url(http://fonts.googleapis.com/css?family=Lato:400,700); +@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); * { box-sizing: border-box; } +.preload * { + transition: none !important; +} html, body { color: #222; + font: 16px Lato, sans-serif; height: 100%; - font: 14px Lato, sans-serif; margin: 0; } body { @@ -19,6 +22,9 @@ a { color: inherit; text-decoration: none; } +a:visited { + color: #f00; +} h1, h2 { font: inherit; @@ -38,6 +44,27 @@ button { outline: none; padding: 0; } +.btn { + border: 2px solid #95a5a6; + border-radius: 5px; + color: #95a5a6; + display: inline-block; + font: bold 12px Lato, sans-serif; + letter-spacing: 1px; + margin-bottom: 10px; + padding: 12px 18px; + text-transform: uppercase; + transition: background .2s, border-color .2s, color .2s; + word-spacing: 3px; +} +.btn:hover { + background: #95a5a6; + color: #fff; +} +.btn:active { + box-shadow: none; + opacity: .8; +} #wrap { height: 100%; position: relative; @@ -72,7 +99,8 @@ button { color: #7c838d; display: block; font: 14px Lato; - margin: 1px -10px; + margin: 1px -11px; + outline: 0; padding: 6px 10px 8px; position: relative; transition: background .1s, color 5s; @@ -96,10 +124,10 @@ button { #sidebar h2 { color: #fff; font: bold 15px Lato; + margin-bottom: 6px; } #sidebar h2 { color: #84d1ff; - margin-bottom: 6px; text-transform: capitalize; } #sidebar .close { @@ -155,11 +183,73 @@ button { #main .window { background: #fff; bottom: 0; + display: none; left: 0; position: absolute; + overflow: auto; right: 0; top: 0; } +#main .window.active { + display: block; +} +#main .wrap { + margin: 0 auto; + max-width: 480px; + padding: 0 20px; +} +#windows a { + color: inherit; + transition: all .2s; +} +#windows a:hover { + color: #00c165; + text-decoration: none; +} +#windows h1, +#windows h2 { + color: #2c3e50; + font: 300 48px Lato, sans-serif; + line-height: 1.5; +} +#windows h2 { + color: #7f8c8d; + font-size: 26px; +} +#windows h3 { + color: #95a5a6; + font-size: 18px; + font-weight: normal; +} +#windows input { + border: 2px solid #e9ecef; + border-radius: 4px; + font-size: 24px; + outline: 0; + padding: 10px 14px; + transition: border-color .2s; + -webkit-appearance: none; + width: 100%; +} +#windows input:hover, +#windows input:focus { + border-color: #95a5a6; +} +#sign-in { + padding: 12.5% 0; +} +#sign-in h1, +#sign-in h2 { + text-align: center; +} +#sign-in form { + margin: 0 auto; + max-width: 250px; +} +#sign-in-input { + margin-bottom: 20px; + width: 100%; +} #chat { font: 13px "Consolas", monospace; line-height: 1.3em; diff --git a/client/index.html b/client/index.html index 9a98819..f0fdfec 100644 --- a/client/index.html +++ b/client/index.html @@ -12,20 +12,33 @@ - +
-
+
+
+

Shout

+

You need to sign in to continue.

+
+

Password:

+ + +
+
+
diff --git a/client/js/chat.js b/client/js/chat.js index f7eb7a2..37ca34f 100644 --- a/client/js/chat.js +++ b/client/js/chat.js @@ -1,6 +1,11 @@ $(function() { var chat = $("#chat"); var sidebar = $("#sidebar"); + + setTimeout(function() { + // Enable transitions. + $("body").removeClass("preload"); + }, 500); var commands = [ "/ame",