diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-08-07 12:51:16 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-08-07 12:51:16 +0200 |
| commit | 9070a8b17735c1d9e6ce3f3a86af686ee2c6b1f4 (patch) | |
| tree | fb385e64c16974302c4344a72d29bbd352f06aa7 /style.css | |
| download | hurrycurry-website-9070a8b17735c1d9e6ce3f3a86af686ee2c6b1f4.tar hurrycurry-website-9070a8b17735c1d9e6ce3f3a86af686ee2c6b1f4.tar.bz2 hurrycurry-website-9070a8b17735c1d9e6ce3f3a86af686ee2c6b1f4.tar.zst | |
a
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..b981a9b --- /dev/null +++ b/style.css @@ -0,0 +1,84 @@ +@font-face { + font-family: "Sansita Swashed"; + src: url(./font-sansita-swashed.woff2); +} +@font-face { + font-family: "Josefin Sans"; + src: url(./font-josefin-sans.woff2); +} +@font-face { + font-family: "Azaret Mono"; + src: url(./font-azaret-mono.woff2); +} + +:root { + --bg0: #24244f; + --bg1: #5050b1; + --button: ; +} + +body { + margin: 0px; + background-color: #24244f; + background-image: url(./background.webp); + background-repeat: repeat; + background-position: 0 0; + background-attachment: fixed; +} + +article { + background-color: #5050b1c5; + max-width: 960px; + width: auto; + margin-left: auto; + margin-right: auto; +} + +.content { + margin: 2em; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: white; + font-family: "Sansita Swashed"; + font-weight: bold; +} + +p, +td { + font-family: "Josefin Sans"; + color: white; +} +a { + color: #e38242; + text-decoration: underline; +} + +img.cover { + width: 100%; +} +div.screenshots { + float: right; +} +img.screenshot { + display: block; + margin: 10px; + width: 350px; +} + +pre { + display: inline; + font-size: 10pt; + font-family: "Azaret Mono"; +} + +footer { + padding: 2em; + color: rgb(202, 202, 202); + text-align: center; +} |