settings and style stuff for Dungeon23

This commit is contained in:
Brian S. Stephan 2023-01-01 14:18:09 -06:00
parent 0edd58f5b3
commit 80001f6de9
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 22 additions and 2 deletions

View File

@ -1,5 +1,6 @@
TITLE_SUFFIX = 'orb.moe'
CONTACT_EMAIL = 'bss@orb.moe'
MARKDOWN_EXTENSIONS = ['extra', 'incorporealcms.mdx.figures', 'sane_lists', 'smarty', 'toc', 'attr_list']
DEFAULT_PAGE_STYLE = 'dungeon'
PAGE_STYLES = {
'dungeon': '/custom-static/css/dungeon.css',

View File

@ -1,5 +1,5 @@
@import '/static/css/light.css';
@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap');
html {
font-family: 'Jost', sans-serif;
@ -7,14 +7,33 @@ html {
div.content {
font-size: 12pt;
line-height: 1.3em;
line-height: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
color: #222;
text-transform: uppercase;
line-height: 1.2em;
}
a {
text-decoration: underline;
}
.dungeon h2 ~ p {
margin: 0.5em 0;
}
.dungeon p + p {
text-indent: 3em;
}
blockquote {
background: none;
font-style: italic;
border: 1px solid #222;
}
.content blockquote p {
margin: 5px;
}