summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorMichał Sapka <michal@sapka.me>2023-01-10 16:55:41 +0100
committerMichał Sapka <michal@sapka.me>2023-01-10 16:55:41 +0100
commit6fbcd9787ffc367a18cee3acbce01192772813c8 (patch)
treeb4f10618e4aa62b762a10b9b8b9f46baddf046d0 /static
parent6b40173ec7284c5f6068c3b809d84cd3d437e939 (diff)
feat: more of layout
Diffstat (limited to 'static')
-rw-r--r--static/style.css46
1 files changed, 34 insertions, 12 deletions
diff --git a/static/style.css b/static/style.css
index 7c9dad1..76ae103 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,9 +1,9 @@
-
body {
font-family: 'arial';
padding: 0;
margin: 0;
font-size: 1.1em;
+ background-color: #fff;
}
img {
max-width: 99%;
@@ -15,6 +15,7 @@
}
a {
text-decoration: none;
+ color: #000;
}
#topnav {
width: 100%;
@@ -49,27 +50,25 @@
color: #000000;
text-decoration: none;
}
-
-
-
-
+ h1 {
+ margin: 0;
+ text-transform: uppercase;
+ }
main, header, footer {
width: 600px;
max-width: 95%;
margin-left: auto;
margin-right: auto;
-
-
+ }
+ header {
+ padding: 5px;
+ padding-bottom: 30px;
}
footer {
text-align: center;
padding: 10px 0 10px 0;
font-size: 0.5em;
}
- article {
- margin-bottom: 20px;
- padding: 10px;
- }
header nav {
display: flex;
}
@@ -96,4 +95,27 @@
display: flex;
flex: 0 0 45px;
}
-
+ h2 {
+ padding: 0;
+ margin: 0;
+ color: #000000;
+ text-transform: uppercase;
+ font-size: 1.5em;
+ }
+ h3 {
+ text-transform: uppercase;
+ }
+ main {
+ padding: 5px;
+ }
+ article {
+ margin-bottom: 20px;
+ padding: 10px;
+ text-align: justify;
+ }
+ article a {
+ text-decoration: underline;
+ }
+ .next-link {
+ float: right;
+ }