From 4ba4d9fee8429735740d6c824324b21fe7d99299 Mon Sep 17 00:00:00 2001 From: Charlotte Gaskell Date: Mon, 28 Jul 2025 13:15:37 +0100 Subject: [PATCH] home: move styles to shared/ --- home/index.html | 36 +----------------------------------- home/shared | 1 + shared/main.css | 30 ++++++++++++++++++++++++++++++ 3 files changed, 32 insertions(+), 35 deletions(-) create mode 120000 home/shared create mode 100644 shared/main.css diff --git a/home/index.html b/home/index.html index 2c425d6..2b6c23f 100644 --- a/home/index.html +++ b/home/index.html @@ -5,6 +5,7 @@ lottepup.space + @@ -39,38 +40,3 @@ - - diff --git a/home/shared b/home/shared new file mode 120000 index 0000000..8fba6b6 --- /dev/null +++ b/home/shared @@ -0,0 +1 @@ +../shared \ No newline at end of file diff --git a/shared/main.css b/shared/main.css new file mode 100644 index 0000000..611c94e --- /dev/null +++ b/shared/main.css @@ -0,0 +1,30 @@ +* { + font-family: monospace; +} + +html { + background-color: black; + color: #ffc0cb; + font-size: 12pt; +} + +a { + color: #ffffff; + text-decoration: none; +} + +a:hover { + font-style: italic; +} + +a:visited { + color: #ffffff; +} + +.footer { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + text-align: center; +} \ No newline at end of file