diff options
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/chat.css | 7 | ||||
| -rw-r--r-- | public/css/drawdrawdraw.css | 22 |
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; +} |
