diff options
Diffstat (limited to 'src/static/style.css')
-rw-r--r-- | src/static/style.css | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/src/static/style.css b/src/static/style.css index c0f1b2d..e989cca 100644 --- a/src/static/style.css +++ b/src/static/style.css @@ -1,3 +1,33 @@ body { - background: #eee; + background: #f1f1f1; + display: block; +} + +main, article { + background: #e1d6cf; + border-radius: 15px; + padding: 5px 15px; + color: #2c3e50; + max-width: 900px; + display: block; + margin: 0 auto; +} + +h1 { + font-weight: 700; + border-bottom: 1px solid #9f9894; + color: #393939; +} + +footer { + margin: 9px; + text-align: center; + opacity: 0.7; + font-size: 0.8rem; +} + +@media screen and (min-width: 30rem) { + body { + margin: 1rem 2rem; + } }
\ No newline at end of file |