summaryrefslogtreecommitdiffstats
path: root/static/styles.css
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2024-10-19 10:38:51 -0700
committerRose Hogenson <rosehogenson@posteo.net>2024-10-19 10:38:51 -0700
commit43bcdbcb3f3956d5760a56324e30253e95ac02ed (patch)
treeb070b01a20f611595bf052083cc460dfd9120282 /static/styles.css
parentd7ec25da4ee8b98acd1951de70fb4d044984bdf5 (diff)
downloadroseh.moe-43bcdbcb3f3956d5760a56324e30253e95ac02ed.tar.zst
Fix the link style.
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css11
1 files changed, 10 insertions, 1 deletions
diff --git a/static/styles.css b/static/styles.css
index 8c102d8..5f7996e 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -8,6 +8,7 @@
body {
background: #f5f5f5;
+ font-size: 25px;
}
h1 {
@@ -19,7 +20,7 @@ h1 {
article {
max-width: 800px;
margin: 0 auto 50px;
- padding: 20px;
+ padding: 40px;
background: #fff0f5;
border: 5px solid #ff69b4;
border-radius: 15px;
@@ -30,3 +31,11 @@ img {
border: 5px solid #ff69b4;
background: white;
}
+
+a:link {
+ color: #ff69b4;
+}
+
+a:visited {
+ color: #a02090;
+}