diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/style/default.css | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/static/style/default.css b/static/style/default.css index 585b54d..27915a9 100644 --- a/static/style/default.css +++ b/static/style/default.css @@ -8,6 +8,9 @@ body { background-color: #E3E3E3; } a { text-decoration: none; } +a.subtle { + color: black; + text-decoration: none; } h1 { font-size: 16pt; font-weight: bold; @@ -34,7 +37,7 @@ hr { border-right: 55px solid #FFFFFF; } dt { font-weight: bold; } -pre { +pre.large { font-family: courier; margin: 10px; padding: 6px; @@ -182,6 +185,34 @@ pre { width: 160px; height: 180px; } +table.gitbrowser { + width: 100%; + border-spacing: 0px; +} +table.gitbrowser tr { + width: 100%; + margin-bottom: 2px; +} +table.gitbrowser td { + margin: 0px; + border: 1px solid black; + margin: 0px; +} +td.head { + font-weight: bold; + width: 130px; + overflow: hidden; +} + +td.hash { + width: 100px; + overflow: hidden; + text-align: right; +} +span.hash { + font-family: courier; +} + #top_bar { height: 22px; background-color: #993333; |