stagit/style.css

77 lines
771 B
CSS
Raw Normal View History

2015-12-04 15:58:04 +00:00
body {
font-family: monospace;
2015-12-20 19:42:16 +00:00
color: #000;
2015-12-04 23:36:54 +00:00
background-color: #fff;
2015-12-04 15:58:04 +00:00
}
h1, h2, h3, h4, h5, h6 {
font-size: 1em;
margin: 0;
}
img, h1, h2 {
2015-12-04 15:58:04 +00:00
vertical-align: middle;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
2015-12-10 22:24:18 +00:00
#blob a {
color: #777;
}
#blob a:hover {
color: blue;
text-decoration: none;
}
table thead td {
font-weight: bold;
}
table td {
padding: 0 0.4em;
}
2015-12-26 11:54:09 +00:00
#index tr:hover td, #log tr:hover td, #files tr:hover td {
2015-12-07 22:54:31 +00:00
background-color: #eee;
}
2015-12-10 22:24:18 +00:00
td.num {
text-align: right;
}
.desc {
color: #777;
}
2015-12-04 15:58:04 +00:00
hr {
border: 0;
2015-12-09 22:48:20 +00:00
border-top: 1px solid #777;
2015-12-04 15:58:04 +00:00
}
2015-12-07 23:23:58 +00:00
pre {
font-family: monospace;
}
pre .h {
color: darkcyan;
2015-12-07 23:23:58 +00:00
}
pre a.i {
2015-12-07 23:23:58 +00:00
color: green;
}
pre a.d {
2015-12-07 23:23:58 +00:00
color: red;
}
pre a.i:hover, pre a.d:hover {
text-decoration: none;
}