From 929df87147736a30e21d24877ec1a9a9cdc9542d Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Tue, 19 Dec 2023 20:39:20 +0100 Subject: [PATCH] Add css. --- static/css/style.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 static/css/style.css diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..f2569e9 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,29 @@ +body { + max-width: 900px; + margin: auto; + background: #303446; + color: #c6d0f5; +} + +h1 { + font-size: 250%; + text-align: center; +} + +a { + color: #f2d5cf; + text-decoration: none; + font-weight: bold; + padding: 5px; +} + +a:hover { + text-decoration: underline; +} + +code { + background: #414559; + border-radius: 10px; + font-size: 105%; + padding: 2px; +}