stagit/style.css
Eivind Uggedal 1363b8b51e Simplify style and make output more legible
- Combines and removes some redundancy.
- Makes <hr> softer by using dashed lines.
- Removes <a> 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
  <a> style.
2015-12-09 22:15:23 +01:00

68 lines
645 B
CSS

body {
font-family: monospace;
color: #333;
background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
font-size: 1em;
margin: 0;
}
img, h1, h2 {
vertical-align: middle;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
table thead td {
font-weight: bold;
}
table td {
padding: 0 0.4em;
}
#content table tr:hover td {
background-color: #eee;
}
.desc {
color: #777;
}
hr {
border: 0;
border-top: 1px dashed #777;
}
pre {
font-family: monospace;
}
pre .h {
color: darkcyan;
}
pre .i {
color: green;
}
pre .d {
color: red;
}
pre span a {
color: inherit;
}
pre span a:hover {
text-decoration: none;
}