diff options
author | Michał Sapka <michal@sapka.me> | 2023-01-02 22:15:10 +0100 |
---|---|---|
committer | Michał Sapka <michal@sapka.me> | 2023-01-02 22:15:10 +0100 |
commit | 98c04aa1e19e9391a19daf903a024e7ebeaeb36b (patch) | |
tree | fbc4a9729a479331f0b33fb613250dad619c95ec /static | |
parent | 679e6588d1ef6709f9e579f8ab2fa1b3ad2ac9d8 (diff) |
feat: blank based on memes
Diffstat (limited to 'static')
-rw-r--r-- | static/favicon.ico | bin | 0 -> 15406 bytes | |||
-rw-r--r-- | static/style.css | 67 |
2 files changed, 67 insertions, 0 deletions
diff --git a/static/favicon.ico b/static/favicon.ico Binary files differnew file mode 100644 index 0000000..36de9d2 --- /dev/null +++ b/static/favicon.ico diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/static/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + |