From 6736b26552b2fdc566fd5e154cd07f3ce909fddc Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 31 Dec 2024 22:11:04 -0500 Subject: Website now uses astro rather than plain html; Added a few more releases --- src/styles/style.css | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/styles/style.css (limited to 'src/styles') diff --git a/src/styles/style.css b/src/styles/style.css new file mode 100644 index 0000000..98acff7 --- /dev/null +++ b/src/styles/style.css @@ -0,0 +1,46 @@ +@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap'); +body { + font-family: "JetBrains Mono", monospace; + background: #333333; + color: white; +} + +.container { + width: 80%; + margin: auto; + overflow: hidden; +} + +.center { + text-align: center; +} + +a:link { + color: #00e600; + background-color: transparent; + text-decoration: none; + font-size: 20px; +} + +a:visited { + color: gray; + background-color: transparent; + text-decoration: none; +} + +p { + font-size: 20px; +} + +footer { + position: fixed; + left: 0; + bottom: 0; + text-align: center; + width: 100%; +} + +img.logo { + width: 50%; + height: auto; + } -- cgit v1.2.3