create a simple D&D 1e-style theme, use it

This commit is contained in:
Brian S. Stephan 2022-12-31 20:39:00 -06:00
parent f414f7eb55
commit 178899dfe9
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 25 additions and 1 deletions

View File

@ -1,4 +1,8 @@
TITLE_SUFFIX = 'orb.moe'
CONTACT_EMAIL = 'bss@orb.moe'
DEFAULT_PAGE_STYLE = 'dark'
DEFAULT_PAGE_STYLE = 'dungeon'
PAGE_STYLES = {
'dungeon': '/custom-static/css/dungeon.css',
'plain': '/static/css/plain.css',
}
MARKDOWN_EXTENSIONS = ['extra', 'sane_lists', 'smarty', 'toc', 'tables']

View File

@ -0,0 +1,20 @@
@import '/static/css/light.css';
@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
html {
font-family: 'Jost', sans-serif;
}
div.content {
font-size: 12pt;
line-height: 1.3em;
}
h1, h2, h3, h4, h5, h6 {
color: #222;
text-transform: uppercase;
}
a {
text-decoration: underline;
}