diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-09-28 20:26:15 +0200 |
---|---|---|
committer | Rodrigo <rodarima@gmail.com> | 2025-09-28 23:10:55 +0200 |
commit | fb510ea86be5ceb9e91573890242581fdbd77ad8 (patch) | |
tree | d819fe40683592008d136727f5a0b03e48dc1164 /src/style.css |
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..35a322d --- /dev/null +++ b/src/style.css @@ -0,0 +1,91 @@ +body { + background: white; + line-height: 1.5; + margin: 3em auto; + padding: 0 3em; /* Fix for Dillo */ + font-family: sans-serif; + max-width: 80ch; +} +h1 { + margin-top: 0.25em; + margin-bottom: 0.25em; + font-size: 22px; +} +img { + border: 0; + max-width: 100%; + margin-top: 1em; + margin-bottom: 1em; +} +figure { + text-align: center; + margin: 1em; +} +footer { + text-align: center; + margin-top: 2em; + clear: both; +} +pre { + padding: 0.25em; + background: #f7f7f7; + border-left: solid 2px #ccc; +} +.date { + font-style: italic; + float: right; +} + +/* Issue state label */ +span.issue-state { + display: inline-block; + text-align: center; + color: #000; + padding: 0px 0.25em; + border: solid 1px #777; +} +span.state-open { + background-color: #8f8; +} +span.state-closed { + background-color: #eee; +} + +/* Issue index view */ +table.issue-index { + width: 100%; + border-spacing: 0; +} +table.issue-index td { + border-collapse: collapse; + border-bottom: solid 1px #ddd; + border-top: solid 1px #ddd; + padding: 0.25em; +} +table.issue-index th { + text-align: left; + background-color: #eee; + padding: 0.25em; +} + +/* Issue view */ +table.issue-meta { + width: 100%; + padding: 0.25em; + border: solid 1px #777; + margin-bottom: 1em; +} +table.issue-meta th { + padding: 0.1em 0.25em; + text-align: left; + vertical-align: top; +} +table.issue-meta td { + width: 100%; + padding: 0.1em 0.25em; +} +div.comment { + margin: 0.5em 0; + padding: 0.5em; + border: solid 1px #777; +} |