diff options
| author | Li Zhineng <[email protected]> | 2013-06-07 17:44:47 +0800 |
|---|---|---|
| committer | Li Zhineng <[email protected]> | 2013-06-07 17:44:47 +0800 |
| commit | c080e07ee1a0004d732508f9ed011678a38eda5e (patch) | |
| tree | 056707266c62dca43ba90de7148c8722628c3d16 /css | |
| parent | cf75ddf153d4fbddd9ae8a517a9c6121e995972b (diff) | |
| download | word-search-game-c080e07ee1a0004d732508f9ed011678a38eda5e.tar.gz word-search-game-c080e07ee1a0004d732508f9ed011678a38eda5e.zip | |
First commit
Diffstat (limited to 'css')
| -rw-r--r-- | css/style.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..c07319c --- /dev/null +++ b/css/style.css @@ -0,0 +1,35 @@ +/* ========================================== +/* +/* CSS RESET +/* +/* ========================================== */ + +body, h1 { + margin: 0; + padding: 0; +} + +/* ========================================== +/* +/* HOME +/* +/* ========================================== */ + +.wrap { + width: 960px; + margin: 0 auto; + padding-top: 40px; +} + +/* ========================================== +/* +/* GAMEAREA +/* +/* ========================================== */ + +#gamearea { + margin: 10px 20px; + background: #efefef; + border-radius: 10px; + position: relative; +}
\ No newline at end of file |
