diff options
Diffstat (limited to 'src/css')
| -rw-r--r-- | src/css/base.css | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/css/base.css b/src/css/base.css index 25b71a5..16526f3 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -2,16 +2,26 @@ box-sizing: border-box; } +html { + background-image: url('/static/chip.png'); +} + body { color: #999; - background-color: #000; + background-color: rgba(0, 0, 0, 0.75); width: 90%; max-width: 1000px; - margin: 20px auto; + padding: 20px; + margin: 0px auto; font-size: 16px; } +body > main, header { + border: 1px solid #999; + padding: 5px; +} + header { margin: auto; } |
