stagit

style.css: improve style, add highlight colors for diff

Hiltjo Posthuma contact@arjunchoudhary.com

commit: 0c5a2e7 parent: 9f81b8c
1 files changed, 40 insertions(+), 1 deletions(-)
Mstyle.css+40-1
M · style.css +40, -1
 1@@ -4,20 +4,59 @@ body {
 2 	background-color: #fff;
 3 }
 4 
 5-h1, h2 {
 6+h1, h2, h3, h4, h5, h6 {
 7+	margin: 0;
 8+}
 9+
10+img, h1, h2 {
11 	vertical-align: middle;
12 }
13 
14+table thead td {
15+	font-weight: bold;
16+}
17+
18+table td {
19+	padding: 0 3px;
20+}
21+
22+table tr:hover td {
23+	background-color: #ddd;
24+}
25+
26 h1 {
27 	font-size: 140%;
28 }
29 
30+.desc {
31+	font-size: 100%;
32+	color: #777;
33+}
34+
35+h1 img {
36+	height: 32px;
37+}
38+
39 hr {
40 	color: #777;
41 	background-color: #777;
42+	border: 0;
43 	border-top: 1px solid #777;
44 }
45 
46 pre {
47 	font-family: monospace;
48 }
49+
50+pre span.i {
51+	color: green;
52+}
53+
54+pre span.d {
55+	color: red;
56+}
57+
58+pre span a {
59+	text-decoration: none;
60+	color: inherit;
61+}