aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.css23
-rw-r--r--ui-shared.c5
2 files changed, 12 insertions, 16 deletions
diff --git a/cgit.css b/cgit.css
index 63acd78..d2c0d0b 100644
--- a/cgit.css
+++ b/cgit.css
@@ -3,7 +3,7 @@ body {
font-size: normal;
background: white;
padding: 0em;
- margin: 0em;
+ margin: 0.5em 1em;
}
@@ -48,33 +48,30 @@ table.list td {
img {
border: none;
}
-table#layout {
- width: 100%;
- border-collapse: collapse;
- margin: 0px;
-}
-td#header {
+
+div#header {
background-color: #ddd;
padding: 0.25em 0.25em 0.25em 0.5em;
font-size: 150%;
font-weight: bold;
- border-bottom: solid 1px #aaa;
+ border: solid 1px #aaa;
vertical-align: middle;
+ margin-bottom: 2em;
}
-td#header img#logo {
+div#header img#logo {
float: right;
}
-td#header input {
+div#header input {
float: right;
margin: 0.25em 1em;
}
-td#header a {
+div#header a {
color: black;
}
-td#content {
- padding: 1em 0.5em;
+div#content {
+ margin: 0.5em 0.5em;
}
div#blob {
diff --git a/ui-shared.c b/ui-shared.c
index 6300516..bebd3e0 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -107,13 +107,12 @@ void cgit_print_docstart(char *title, struct cacheitem *item)
void cgit_print_docend()
{
- html("</td></tr></table>");
html("</body>\n</html>\n");
}
void cgit_print_pageheader(char *title, int show_search)
{
- html("<table id='layout'><tr><td id='header'>");
+ html("<div id='header'>");
htmlf("<a href='%s'>", cgit_logo_link);
htmlf("<img id='logo' src='%s'/>\n", cgit_logo);
htmlf("</a>");
@@ -136,5 +135,5 @@ void cgit_print_pageheader(char *title, int show_search)
html_txt(title);
if (cgit_query_repo)
html("</a>");
- html("</td></tr><tr><td id='content'>");
+ html("</div>");
}