stagit

Simplify style and make output more legible

- Combines and removes some redundancy.
- Makes 
softer by using dashed lines. - Removes underlines since the file/log view have tons of links and reading them is a bit distracting. Underlines are added on hover. - Makes diff headers darkcyan to match the default command line colors and not conflict with new style.

Eivind Uggedal contact@arjunchoudhary.com

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