diff options
| author | lizhineng <[email protected]> | 2013-06-29 13:59:23 +0800 |
|---|---|---|
| committer | lizhineng <[email protected]> | 2013-06-29 13:59:23 +0800 |
| commit | 45f3be5425870f9b4cf9a60f2f950fa3dd7807ef (patch) | |
| tree | f5a57377df0c0cf5e7d6628af6db2c974552c38b /css | |
| parent | ef5c55619e88600492d6d4015660e7101baafce3 (diff) | |
| download | word-search-game-45f3be5425870f9b4cf9a60f2f950fa3dd7807ef.tar.gz word-search-game-45f3be5425870f9b4cf9a60f2f950fa3dd7807ef.zip | |
Added word list
Diffstat (limited to 'css')
| -rw-r--r-- | css/style.css | 25 | ||||
| -rw-r--r-- | css/wordseach.css | 24 |
2 files changed, 31 insertions, 18 deletions
diff --git a/css/style.css b/css/style.css index afc63ed..f68994c 100644 --- a/css/style.css +++ b/css/style.css @@ -38,27 +38,16 @@ body { margin-bottom: 40px; } -/* Wordseach */ - -.ws-area { - background: #fafafa; +.ws-area, .ws-words { display: inline-block; - padding: 20px; - border-radius: 10px; - -moz-user-select: -moz-none; - -khtml-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; -} - -.ws-row { - line-height: 0; + vertical-align: top; } -.ws-col { - cursor: pointer; +.ws-words { + margin-left: 20px; + text-align: left; } -.ws-selected { - background: #eee; +.ws-word { + margin-bottom: 4px; }
\ No newline at end of file diff --git a/css/wordseach.css b/css/wordseach.css new file mode 100644 index 0000000..0c26836 --- /dev/null +++ b/css/wordseach.css @@ -0,0 +1,24 @@ +/* Wordseach */ + +.ws-area { + background: #fafafa; + display: inline-block; + padding: 20px; + border-radius: 10px; + -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: #eee; +} |
