diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-08-05 01:21:38 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-08-05 01:21:38 -0400 |
| commit | 18f6f0219474f0f43e7403a5f5f8cff7c3dd0246 (patch) | |
| tree | 228fd343f36da554e540a70a0522eae489ad62fc /public/css/css.css | |
| parent | d0b4cd4f7e6364a35a420f2f3b0fcdbb502d8a9a (diff) | |
login view, lobby view
Diffstat (limited to 'public/css/css.css')
| -rw-r--r-- | public/css/css.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/css/css.css b/public/css/css.css index 1fce66f..a8d3df1 100644 --- a/public/css/css.css +++ b/public/css/css.css @@ -3,3 +3,24 @@ html,body{width:100%;height:100%;margin:0;padding:0;} #bg.tile{background-size:auto auto;} html{background:black;} body{background:transparent;} +#login { + display: none; +} +#login { + position: absolute; top: 0; left: 0; + width: 100%; height: 100%; + background: rgba(0,0,0,0.95); +} +#lobby form, #login form { + position: absolute; + top: 50%; left: 50%; + -webkit-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); + background: #fff; + padding: 20px; +} + +#lobby input { + font-size: 3vw; + width: 40vw; +}
\ No newline at end of file |
