diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/content.css | 1 | ||||
-rw-r--r-- | css/copyrightNotice.css | 12 | ||||
-rw-r--r-- | css/navigationBar.css | 3 | ||||
-rw-r--r-- | css/page.css | 33 |
4 files changed, 41 insertions, 8 deletions
diff --git a/css/content.css b/css/content.css index 3763889..4208b4d 100644 --- a/css/content.css +++ b/css/content.css @@ -1,6 +1,7 @@ div.content { background-color:var(--foregroundColour); border-radius: 1rem; + color: var(--backgroundColour); margin: 0 auto; max-width: var(--maximumPageWidth); min-width: var(--minimumPageWidth); diff --git a/css/copyrightNotice.css b/css/copyrightNotice.css index d98ec70..ba2b5c7 100644 --- a/css/copyrightNotice.css +++ b/css/copyrightNotice.css @@ -1,10 +1,10 @@ div.copyrightNotice { - color: var(--backgroundColour); - font-weight:bold; - margin: 0 auto; - margin-top: 1rem; - text-align: center; - width: fit-content; + background-color:none; + font-weight: bold; + margin: 0 auto; + margin-top: 1rem; + text-align: center; + width: fit-content; } div.copyrightNotice p.projectName { diff --git a/css/navigationBar.css b/css/navigationBar.css index 2005eda..7494ff1 100644 --- a/css/navigationBar.css +++ b/css/navigationBar.css @@ -1,7 +1,6 @@ div.navigationBar { - background-color:var(--foregroundColour); + background-color:none; border-radius: 1rem; - color: var(--backgroundColour); font-family: var(--sansSerifFont); font-weight: bold; padding: 1rem 2rem; diff --git a/css/page.css b/css/page.css index 1a845f9..3280281 100644 --- a/css/page.css +++ b/css/page.css @@ -1,11 +1,21 @@ div.page { background-color:var(--backgroundColour); border-radius: 1rem; + color: var(--foregroundColour); padding: 1rem 2rem; text-align: left; width: 100%; } +div.page span.footnote { + font-size: calc(2rem / 3); + vertical-align:sub; +} + +div.page span.footnote::before { + content:"\0020"; +} + div.page p.pageHeading,div.page div.section p.sectionHeading { font-family:var(--sansSerifFont); font-weight:bold; @@ -18,6 +28,19 @@ div.page p.pageHeading { text-align: right; } +div.page p.vocable + p.vocable { + margin-top:calc(1rem / 2); +} + +div.page p.vocable span.vocable { + font-style:italic; +} + +div.page p.vocable span.vocable + span.vocable::before { + content: "\0020\2014\0020"; + font-style:normal; +} + div.page p.note { font-style:italic; } @@ -30,6 +53,16 @@ div.page p.note span.emphasis { font-weight:bold; } +div.page p.footnote { + font-size: calc(2rem / 3); + font-style:italic; + margin-top:calc(1rem / 2); +} + +div.page p + p.footnote { + margin-top:1rem; +} + div.page table tr.small { font-size:calc(2rem / 3); } |