diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/base.css | 4 | ||||
-rw-r--r-- | css/page.css | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/css/base.css b/css/base.css index 6459ab0..99031a3 100644 --- a/css/base.css +++ b/css/base.css @@ -21,6 +21,10 @@ a:hover { color:var(--foregroundColour); } +span.emphasis { + font-style:italic; +} + table { background-color:var(--foregroundColour); border-color: var(--foregroundColour); diff --git a/css/page.css b/css/page.css index 3befd01..1a845f9 100644 --- a/css/page.css +++ b/css/page.css @@ -18,6 +18,18 @@ div.page p.pageHeading { text-align: right; } +div.page p.note { + font-style:italic; +} + +div.page p.note::before { + content:"\002E\002E\002E\0020"; +} + +div.page p.note span.emphasis { + font-weight:bold; +} + div.page table tr.small { font-size:calc(2rem / 3); } |