diff options
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; +} |