From f4a3e9bf53c657c3e6b9330eb6ad644094f75e61 Mon Sep 17 00:00:00 2001 From: LMBishop <13875753+LMBishop@users.noreply.github.com> Date: Sat, 20 Nov 2021 17:46:20 +0000 Subject: Initial commit --- app/static/css/globalstyles.css | 76 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 app/static/css/globalstyles.css (limited to 'app/static/css') diff --git a/app/static/css/globalstyles.css b/app/static/css/globalstyles.css new file mode 100644 index 0000000..3d030ab --- /dev/null +++ b/app/static/css/globalstyles.css @@ -0,0 +1,76 @@ +@import url('https://fonts.googleapis.com/css2?family=Cousine:ital,wght@0,400;0,700;1,400;1,700&display=swap'); + +html, body { + border: 0; + margin: 0; + background-color: #000; + color: #eee; + font-family: 'Cousine', monospace, sans-serif; + line-height: 1.3; +} + +#navbar { + background-color: #222; + width: 100%; + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: stretch; + gap: 10px; +} + +.navbar-element { + background-color: #222; + display: flex; + height: 30px; + text-align: center; + line-height: 30px; + padding: 5px; +} + +.navbar-element:hover { + background-color: #888; + transition: 0.2s; + cursor: pointer; +} + +.navbar-element > a { + color: #fff; + text-decoration: none; +} + +.navbar-element > .highlight { + color: #ffff87; +} + +#main-container { + max-width: 1100px; + margin: 0 auto; +} + +#content { + max-width: calc(1100px - 10px); + margin: 0 auto; +} + +a { + color: #ffff87; + text-decoration: underline; +} + +.highlight { + color: #ffff87; +} + +.footer { + font-size: 10px; +} + +.redlink { + color: #ff4136; +} + +.box { + border: solid 1px #fff; + padding: 10px; +} \ No newline at end of file -- cgit v1.2.3-70-g09d2