-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
104 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Shortbread website | ||
|
||
The website is created using [Hugo](https://gohugo.io/). | ||
|
||
## Theme | ||
|
||
The theme is based on [Hextra](https://imfing.github.io/hextra/docs/). | ||
|
||
## Development | ||
|
||
``` | ||
hugo serve | ||
``` | ||
|
||
Update theme: | ||
|
||
``` | ||
git remote add hextra [email protected]:pka/hextra.git | ||
git subtree pull --prefix=shortbread-website/themes/hextra hextra backport-debian --squash | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Gothic&display=swap'); | ||
|
||
:root { | ||
font-family: "Lato", sans-serif; | ||
--primary-hue: 48deg; | ||
--primary-saturation: 93%; | ||
} | ||
|
||
body { | ||
background-color: rgb(255 248 219); | ||
} | ||
|
||
/* Title bar */ | ||
.nav-container-blur { | ||
background-color: hsl(48deg 93% 45% / 1); | ||
} | ||
.nav-container .hx-font-extrabold { | ||
font-family: "League Gothic", sans-serif; | ||
font-size: 1.55em; | ||
} | ||
|
||
/* Menu hover background */ | ||
aside.sidebar-container .hover\:hx-bg-gray-100:hover { | ||
background-color: hsl(48deg 93% 85% / 1); | ||
} | ||
|
||
/* background for "Edit this page" */ | ||
nav .hx-bg-white { | ||
background-color: rgb(255 248 219); | ||
--tw-shadow: none; | ||
} | ||
|
||
.content h1, h2, h3 { | ||
font-family: "League Gothic", sans-serif; | ||
letter-spacing: normal; | ||
} | ||
|
||
.content h1 { | ||
font-size: 3.77em; | ||
} | ||
.content h2 { | ||
font-size: 2.11em; | ||
} | ||
.content h3 { | ||
font-size: 1.55em; | ||
} | ||
|
||
/* Table rows */ | ||
.content :where(table):not(:where(.hextra-code-block table, [class~="not-prose"], [class~="not-prose"] *)) tr:nth-child(2n) { | ||
background-color: hsl(48deg 93% 39% / 0.05); | ||
} | ||
|
||
.example-images img { | ||
display: initial; | ||
width: 300px; | ||
} | ||
|
||
footer.hextra-footer.hx-bg-gray-100 { | ||
background-color: hsl(48deg 93% 45% / 1); | ||
} | ||
|
||
/* Reduce footer height */ | ||
footer .hx-py-12 { | ||
padding-top: 1rem; | ||
padding-bottom: 1rem; | ||
} | ||
footer .hx-mt-6 { | ||
margin-top: 0; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
--- | ||
|
||
# Imprint | ||
+++ | ||
title = "Imprint" | ||
toc = false | ||
sidebar.exclude = true | ||
+++ | ||
|
||
This web site is run by | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
copyright: "[Imprint](/imprint) | Map data by [OpenStreetMap contributors](https://www.openstreetmap.org/copyright) published under Open Database License" |