author | Lars Hjemli <hjemli@gmail.com> | 2007-01-28 11:01:21 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-01-28 11:01:21 (UTC) |
commit | d8b0cca2606f8919208ea68549ff60c6e5fe91bb (patch) (side-by-side diff) | |
tree | cfbf5f8f8c88f9ce26850c9bbc84ae0e05bc9775 | |
parent | 8596cda71d04cd49cb983aee7968d14cc58c030d (diff) | |
download | cgit-d8b0cca2606f8919208ea68549ff60c6e5fe91bb.zip cgit-d8b0cca2606f8919208ea68549ff60c6e5fe91bb.tar.gz cgit-d8b0cca2606f8919208ea68549ff60c6e5fe91bb.tar.bz2 |
Set explicit font size
This might be bad style, but cgit really needed smaller fonts.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,99 +1,99 @@ body { font-family: arial; - font-size: normal; + font-size: 11pt; background: white; padding: 0em; margin: 0em; } h2 { font-size: 120%; font-weight: bold; margin-bottom: 0.5em; } a { color: blue; text-decoration: none; } a:hover { text-decoration: underline; } table.list { border: none; border-collapse: collapse; } table.list tr { background: white; } table.list tr:hover { background: #eee; } table.list tr.nohover:hover { background: white; } table.list th { font-weight: normal; border-bottom: solid 1px #777; padding: 0.1em 0.5em 0.1em 0.5em; vertical-align: baseline; } table.list td { border: none; padding: 0.1em 0.5em 0.1em 0.5em; } img { border: none; } table#layout { width: 100%; border-collapse: collapse; margin: 0px; } td#header { background-color: #ddd; padding: 0.25em 0.25em 0.25em 0.5em; font-size: 150%; font-weight: bold; border-bottom: solid 1px #aaa; vertical-align: middle; } td#header img#logo { float: right; } td#header input { float: right; margin: 0.25em 1em; } td#header a { color: black; } td#content { padding: 1em 0.5em; } div#blob { border: solid 1px black; } div.error { color: red; font-weight: bold; margin: 1em 2em; } div.ls-blob, div.ls-dir { font-family: monospace; } div.ls-dir a { font-weight: bold; } th.filesize, td.filesize { text-align: right; } td.filesize { font-family: monospace; |