diff options
Diffstat (limited to 'css/style.css')
| -rw-r--r-- | css/style.css | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/css/style.css b/css/style.css index b84e219..682d445 100644 --- a/css/style.css +++ b/css/style.css @@ -52,14 +52,29 @@ body { /* ========================================== /* -/* GAMEAREA +/* Game area /* /* ========================================== */ -#ws-area { +.ws-area { background: #fafafa; display: inline-block; padding: 20px; border-radius: 10px; - position: relative; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} + +.ws-row { + line-height: 0; +} + +.ws-col { + cursor: pointer; +} + +.ws-selected { + background: #ddd; }
\ No newline at end of file |
