summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorMichał Sapka <michal@sapka.me>2023-01-08 12:12:11 +0100
committerMichał Sapka <michal@sapka.me>2023-01-08 12:12:11 +0100
commit0381d2e62d10fd30402c29d85041071adcc483bf (patch)
tree7a07eb53f9b4f95c71750af29b8a3db3e07c6817 /static
parent8987664e3ab4dd08879c3d45ba4ba954aaec6f69 (diff)
feat: basic list
Diffstat (limited to 'static')
-rw-r--r--static/style.css54
1 files changed, 6 insertions, 48 deletions
diff --git a/static/style.css b/static/style.css
index 4be1bf5..07ebd99 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,7 +1,5 @@
body {
- background-color:#020202;
- color: #f2f2f2;
font-family: 'arial';
padding: 0;
margin: 0;
@@ -11,57 +9,17 @@
width: auto;
height: auto;
}
- main {
+ main, header, footer {
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;
+ padding: 10px 0 10px 0;
+ font-size: 0.5em;
+ }
+ article {
+ margin-bottom: 20px;
}
-