Commit b460e646757a25a1561fa141222ddcec1acf5239
clean up
Ev Bogue committed on 9/3/2016, 9:00:52 PMParent: 878d7c26f377fc18f5dc6196c1aa22160f765d57
Files changed
index.js | changed |
static/styles.css | changed |
index.js | ||
---|---|---|
@@ -427,9 +427,9 @@ | ||
427 | 427 … | var self = this |
428 | 428 … | if (read === undefined) |
429 | 429 … | return this.serveTemplate.bind(this, req, title, code) |
430 | 430 … | var q = req._u.query.q && u.escape(req._u.query.q) || '' |
431 | - var app = 'git ssb' | |
431 … | + var app = 'GitMX' | |
432 | 432 … | var appName = this.ssbAppname |
433 | 433 … | if (req._t) app = req._t(app) |
434 | 434 … | return cat([ |
435 | 435 … | pull.values([ |
@@ -464,11 +464,11 @@ | ||
464 | 464 … | '<input class="search-bar" name="q" size="60"' + |
465 | 465 … | ' placeholder="🔍" value="' + q + '" />' + |
466 | 466 … | '</form>' + |
467 | 467 … | '</header>' + |
468 | - '<article>'), | |
468 … | + '<article><hr />'), | |
469 | 469 … | this.renderTry(read), |
470 | - pull.once('<hr/></article></body></html>') | |
470 … | + pull.once('<hr/><p style="font-size: .8em;">Built with <a href="http://git-ssb.celehner.com">git-ssb-web</a></p></article></body></html>') | |
471 | 471 … | ]) |
472 | 472 … | } |
473 | 473 … | |
474 | 474 … | G.serveError = function (req, err, status) { |
static/styles.css | ||
---|---|---|
@@ -1,9 +1,9 @@ | ||
1 | 1 … | body { |
2 | 2 … | margin: 1em; |
3 | 3 … | line-height: 1.6; |
4 | 4 … | color: #333; |
5 | - background: #white; | |
5 … | + background: #fff; | |
6 | 6 … | font-family: 'Source Sans Pro', sans-serif; |
7 | 7 … | } |
8 | 8 … | |
9 | 9 … | article, header { |
@@ -28,9 +28,9 @@ | ||
28 | 28 … | |
29 | 29 … | section code { |
30 | 30 … | padding: .5ex; |
31 | 31 … | border-radius: .5ex; |
32 | - background-color: #f5f5f5; | |
32 … | + background-color: #fff; | |
33 | 33 … | } |
34 | 34 … | |
35 | 35 … | pre > code { |
36 | 36 … | padding: 0; |
@@ -39,9 +39,9 @@ | ||
39 | 39 … | |
40 | 40 … | /* header */ |
41 | 41 … | |
42 | 42 … | header h1 { |
43 | - font-weight: inherit; | |
43 … | + font-weight: bold; | |
44 | 44 … | font-size: 1.5em; |
45 | 45 … | display: inline; |
46 | 46 … | } |
47 | 47 … | |
@@ -67,9 +67,11 @@ | ||
67 | 67 … | |
68 | 68 … | .profile-icon { |
69 | 69 … | height: 1.5em; |
70 | 70 … | width: 1.5em; |
71 | - margin: .5em .5ex 0 .2ex; | |
71 … | + margin-right: .2em; | |
72 … | + margin-left: .2em; | |
73 … | + margin-top: .4em; | |
72 | 74 … | border: 1px solid #eee; |
73 | 75 … | float: left; |
74 | 76 … | } |
75 | 77 … | |
@@ -99,18 +101,18 @@ | ||
99 | 101 … | margin-top: 1em; |
100 | 102 … | } |
101 | 103 … | |
102 | 104 … | a:link, a:visited { |
103 | - color: #0088cc; | |
105 … | + color: #08c; | |
104 | 106 … | text-decoration: none; |
105 | 107 … | } |
106 | 108 … | a:hover { |
107 | 109 … | color: #005580; |
108 | 110 … | } |
109 | 111 … | |
110 | 112 … | hr { |
111 | 113 … | border: 0; |
112 | - border-bottom: 1px solid #ddd; | |
114 … | + border-bottom: 1px solid #eee; | |
113 | 115 … | } |
114 | 116 … | |
115 | 117 … | section img { |
116 | 118 … | max-width: 100%; |
Built with git-ssb-web