stagit/style.css

129 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2015-12-04 15:58:04 +00:00
body {
2021-03-11 01:51:30 +00:00
color: #cdcdcd;
background-color: #141415;
2017-11-25 11:09:56 +00:00
font-family: monospace;
2021-03-11 01:51:30 +00:00
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
margin: 10px auto;
}
a {
text-decoration: none;
2021-03-14 15:25:27 +00:00
color: #3291FF;
2021-03-11 01:51:30 +00:00
}
a:hover {
text-decoration: underline;
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;
}
img {
border: 0;
}
a:target {
background-color: #222;
}
a.d,
a.h,
a.i,
a.line {
text-decoration: none;
}
2015-12-10 22:24:18 +00:00
#blob a {
color: #555;
2015-12-10 22:24:18 +00:00
}
#blob a:hover {
color: blue;
text-decoration: none;
}
table thead td {
font-weight: bold;
}
table td {
padding: 0 0.4em;
2016-01-06 18:19:20 +00:00
}
2021-03-11 01:51:30 +00:00
#content {
display: inline-block;
}
2016-01-06 18:19:20 +00:00
#content table td {
vertical-align: top;
2017-11-25 11:09:56 +00:00
white-space: nowrap;
2021-03-11 01:51:30 +00:00
margin: auto;
}
#branches tr:hover td,
#tags tr:hover td,
#index tr:hover td,
#log tr:hover td,
#files tr:hover td {
2021-03-11 01:51:30 +00:00
background-color: #222;
}
#index tr td:nth-child(2),
2021-03-11 01:51:30 +00:00
#files tr td:nth-child(2),
#tags tr td:nth-child(3),
#branches tr td:nth-child(3),
#log tr td:nth-child(2) {
white-space: normal;
2021-03-11 01:51:30 +00:00
min-width: 50vh;
}
2015-12-10 22:24:18 +00:00
td.num {
text-align: right;
}
.desc {
2021-03-11 01:51:30 +00:00
color: #aaa;
}
2015-12-04 15:58:04 +00:00
hr {
border: 0;
border-top: 1px solid #555;
height: 1px;
2015-12-04 15:58:04 +00:00
}
2015-12-07 23:23:58 +00:00
pre {
font-family: monospace;
}
pre a.h {
2021-03-11 01:51:30 +00:00
color: #77a;
2015-12-07 23:23:58 +00:00
}
.A,
span.i,
pre a.i {
2021-03-11 01:51:30 +00:00
color: #5c5;
2015-12-07 23:23:58 +00:00
}
.D,
span.d,
pre a.d {
2021-03-11 01:51:30 +00:00
color: #e77;
2015-12-07 23:23:58 +00:00
}
pre a.h:hover,
pre a.i:hover,
pre a.d:hover {
text-decoration: none;
}
2021-03-11 01:51:30 +00:00