summaryrefslogtreecommitdiff
path: root/public/css
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2013-02-23 11:46:30 -0800
committerJules Laplace <jules@okfoc.us>2013-02-23 11:46:30 -0800
commitb972385a838e0f54755d8e9a59bcf6ca5aeee463 (patch)
tree2f02ea5f58aa984c896ec1092c981aa837706a50 /public/css
parent1cf3491f7ff8fc03dc1db12452075ad1daaad775 (diff)
logging In
Diffstat (limited to 'public/css')
-rw-r--r--public/css/chat.css7
-rw-r--r--public/css/drawdrawdraw.css22
2 files changed, 26 insertions, 3 deletions
diff --git a/public/css/chat.css b/public/css/chat.css
index dc627b0..f792709 100644
--- a/public/css/chat.css
+++ b/public/css/chat.css
@@ -1,8 +1,8 @@
#chat_container {
- overflow: hidden;
position: absolute;
+ background: #fffdf8;
}
-#chat_container #chat {
+#chat {
overflow-y: scroll;
overflow-x: hidden;
max-height: 400px;
@@ -12,6 +12,9 @@
padding-right: 10px;
padding-bottom: 5px;
}
+#chat #chat_shim {
+ height: 390px;
+}
#chat p {
margin: 0;
}
diff --git a/public/css/drawdrawdraw.css b/public/css/drawdrawdraw.css
index 3f34505..b4cc6cb 100644
--- a/public/css/drawdrawdraw.css
+++ b/public/css/drawdrawdraw.css
@@ -1,6 +1,7 @@
html,body { padding: 0; margin: 0; width: 100%; height: 100%;
font-family: 'Optima',sans-serif;
overflow: hidden;
+ background: #fcfaf5;
}
::-webkit-scrollbar {
@@ -13,4 +14,23 @@ html,body { padding: 0; margin: 0; width: 100%; height: 100%;
width: 4px;
height: 10px;
background: #ddd;
-} \ No newline at end of file
+}
+
+.curtain {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(255,255,255,0.9);
+}
+.curtain .inner {
+ position: absolute;
+ top: 20%;
+ left: 50%;
+ width: 400px;
+ padding: 10px;
+ margin-left: -210px;
+ background: #fff;
+ box-shadow: 0 1px 4px #888;
+}