diff options
author | Michał Sapka <michal@sapka.me> | 2023-01-08 16:23:14 +0100 |
---|---|---|
committer | Michał Sapka <michal@sapka.me> | 2023-01-08 16:23:14 +0100 |
commit | 23c2f6faa70341bef737ea14a5c859f676208117 (patch) | |
tree | 4212d025dfc311abc1a28ea8afe010dd2b484d7a /static | |
parent | 5e0ff20fcd6e6ce30a8c0b45eee601c87abbf17c (diff) |
feat: add new content
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 07ebd99..fc55c10 100644 --- a/static/style.css +++ b/static/style.css @@ -9,11 +9,20 @@ width: auto; height: auto; } + a:hover { + text-decoration: underline; + } + a { + text-decoration: none; + } main, header, footer { - width: 800px; + width: 600px; max-width: 95%; margin-left: auto; margin-right: auto; + background-color: #ff0000; + + } footer { text-align: center; @@ -22,4 +31,32 @@ } article { margin-bottom: 20px; + padding: 10px; + } + header nav { + display: flex; + } + header a { + color: #000000; + } + header nav a { + flex-grow: 1; + text-align: center; + } + #logo-space a { + display: flex; + flex-direction: row; + width: 100%; + } + #logo-space img { + align-self: center; } + #logo-space h1 { + display: flex; + flex-grow: 2; + } + #logo-space #logo { + display: flex; + flex: 0 0 45px; + } + |