diff options
Diffstat (limited to 'src/acit/html.py')
| -rw-r--r-- | src/acit/html.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/acit/html.py b/src/acit/html.py index ffb3527..cc874ae 100644 --- a/src/acit/html.py +++ b/src/acit/html.py @@ -23,9 +23,9 @@ mailpage=""" bugtype: {bugtype} | status: <span id="status" class="status-{status}">{status}</span> </span> </nav> - <h2 class="subject"> + <h1 class="subject"> <span class="bugnr">#{bug}</span> {subject} - </h2> + </h1> <article class="main"> <p> @@ -75,9 +75,9 @@ projectpage=""" <a href="/{project}/">{project}</a> </span> </nav> - <h2 class="trackerpage-header"> + <h1 class="trackerpage-header"> {project} - </h2> + </h1> <article class="usage"> Welcome to the {project} bug tracker! To submit an issue, @@ -209,6 +209,10 @@ h1, h2 { color: var(--accent); margin-left: 1em; } +h1 { + font-size: 1.5em; + border-bottom: 1px solid var(--tertiary-background); +} .formattedheader { background-color: var(--tertiary-background); @@ -253,6 +257,8 @@ h1, h2 { padding: 1px; padding-left: 2em; padding-right: 2em; +} +.highlight { overflow-y: scroll; white-space: nowrap; } |
