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) (unidiff) | |
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,51 +1,51 @@ | |||
1 | body { | 1 | body { |
2 | font-family: arial; | 2 | font-family: arial; |
3 | font-size: normal; | 3 | font-size: 11pt; |
4 | background: white; | 4 | background: white; |
5 | padding: 0em; | 5 | padding: 0em; |
6 | margin: 0em; | 6 | margin: 0em; |
7 | } | 7 | } |
8 | 8 | ||
9 | 9 | ||
10 | h2 { | 10 | h2 { |
11 | font-size: 120%; | 11 | font-size: 120%; |
12 | font-weight: bold; | 12 | font-weight: bold; |
13 | margin-bottom: 0.5em; | 13 | margin-bottom: 0.5em; |
14 | } | 14 | } |
15 | 15 | ||
16 | a { | 16 | a { |
17 | color: blue; | 17 | color: blue; |
18 | text-decoration: none; | 18 | text-decoration: none; |
19 | } | 19 | } |
20 | 20 | ||
21 | a:hover { | 21 | a:hover { |
22 | text-decoration: underline; | 22 | text-decoration: underline; |
23 | } | 23 | } |
24 | 24 | ||
25 | table.list { | 25 | table.list { |
26 | border: none; | 26 | border: none; |
27 | border-collapse: collapse; | 27 | border-collapse: collapse; |
28 | } | 28 | } |
29 | table.list tr { | 29 | table.list tr { |
30 | background: white; | 30 | background: white; |
31 | } | 31 | } |
32 | table.list tr:hover { | 32 | table.list tr:hover { |
33 | background: #eee; | 33 | background: #eee; |
34 | } | 34 | } |
35 | table.list tr.nohover:hover { | 35 | table.list tr.nohover:hover { |
36 | background: white; | 36 | background: white; |
37 | } | 37 | } |
38 | table.list th { | 38 | table.list th { |
39 | font-weight: normal; | 39 | font-weight: normal; |
40 | border-bottom: solid 1px #777; | 40 | border-bottom: solid 1px #777; |
41 | padding: 0.1em 0.5em 0.1em 0.5em; | 41 | padding: 0.1em 0.5em 0.1em 0.5em; |
42 | vertical-align: baseline; | 42 | vertical-align: baseline; |
43 | } | 43 | } |
44 | table.list td { | 44 | table.list td { |
45 | border: none; | 45 | border: none; |
46 | padding: 0.1em 0.5em 0.1em 0.5em; | 46 | padding: 0.1em 0.5em 0.1em 0.5em; |
47 | } | 47 | } |
48 | img { | 48 | img { |
49 | border: none; | 49 | border: none; |
50 | } | 50 | } |
51 | table#layout { | 51 | table#layout { |