From 0bce935ccf6a93a0273bac468999bd0f62745fba Mon Sep 17 00:00:00 2001 From: Strangedusk Date: Thu, 27 Jan 2022 16:55:58 +0100 Subject: [PATCH] CSS --- include/header.php | 1 + static/style.css | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 static/style.css diff --git a/include/header.php b/include/header.php index b2b0096..3d44b59 100644 --- a/include/header.php +++ b/include/header.php @@ -7,5 +7,6 @@ $header = <<
+ HEADER; diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..621b5cd --- /dev/null +++ b/static/style.css @@ -0,0 +1,11 @@ +body { + text-align: center; + background-color: black; + color: white; +} +a, a:visited { + color: orange; +} +a:hover, a:active { + color: pink; +}