summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-04-14 08:00:59 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-04-14 08:07:43 (UTC)
commitadf61225c40dd89e2bb1af0087767aee66791c4e (patch) (side-by-side diff)
tree915a5e0ea10cd4a723e047daa3485ab5dd290f88
parent76ba6287bfb533baca7285b107b5d975581d449d (diff)
downloadcgit-adf61225c40dd89e2bb1af0087767aee66791c4e.zip
cgit-adf61225c40dd89e2bb1af0087767aee66791c4e.tar.gz
cgit-adf61225c40dd89e2bb1af0087767aee66791c4e.tar.bz2
Fix css font-family
When the sidebar was introduced in v0.7 the default font-family property got messed up, but this commit should fix the issue. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--cgit.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.css b/cgit.css
index 8f3d00c..171b9de 100644
--- a/cgit.css
+++ b/cgit.css
@@ -1,55 +1,55 @@
body, table {
padding: 0em;
margin: 0em;
}
body {
- font-family: sans;
+ font-family: sans-serif;
font-size: 10pt;
color: #333;
background: white;
padding: 4px;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
table {
border-collapse: collapse;
}
table#header {
width: 100%;
margin-bottom: 1em;
}
table#header td.logo {
width: 96px;
}
table#header td.main {
font-size: 250%;
padding-left: 10px;
}
table#header td.main a {
color: #000;
}
table#header td.form {
text-align: right;
vertical-align: bottom;
padding-right: 1em;
padding-bottom: 2px;
}
table#header td.form form,
table#header td.form input,
table#header td.form select {
font-size: 90%;