diff options
| author | Botond Hende <nettingman@gmail.com> | 2025-12-23 15:57:09 +0100 |
|---|---|---|
| committer | Botond Hende <nettingman@gmail.com> | 2025-12-23 15:57:09 +0100 |
| commit | 7308b658153e089456dd1b5ad691ff8db19088cd (patch) | |
| tree | c26e122bff0a621c7622ddaf08c1f899a7267bf2 /comic/assets/css/comic.css | |
| parent | 71c7de032edca8bfd00871e0f0fe986bbd9e60a5 (diff) | |
comic styling
Diffstat (limited to 'comic/assets/css/comic.css')
| -rw-r--r-- | comic/assets/css/comic.css | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/comic/assets/css/comic.css b/comic/assets/css/comic.css index c647875..f571a16 100644 --- a/comic/assets/css/comic.css +++ b/comic/assets/css/comic.css @@ -1,18 +1,36 @@ -img.comic { - width: 100%; -} - -header { - margin: auto; +body { + background-color: #cdb7f6; } -main, header { +main, header, footer { display: flex; flex-flow: column; align-items: center; margin: auto; + border-radius: 0.5rem; + background-color: white; +} + +@media (min-width: 768px) { + main, header, footer { + padding: 0 5rem 0 5rem !important; + } +} + +main, footer { + margin-top: 0.5rem; +} + +img.comic { + width: 100%; + border: 0.1rem solid black; +} + +p { + text-align: center; + margin: 0.2rem; } -div.huge-vertical-spacer-at-the-bottom { - height: 10rem; +p.description { + margin-top: 3rem; }
\ No newline at end of file |
