codereview/media/default.css

96 lines
1.5 KiB
CSS
Raw Normal View History

2010-11-19 05:12:29 +00:00
body, th, td {
font-family: sans-serif;
font-size: 10pt;
}
a {
color: black;
}
2010-11-22 05:48:29 +00:00
div.navigation {
2010-11-22 14:50:41 +00:00
width: 300px;
2010-11-22 05:48:29 +00:00
float: left;
2010-11-22 14:50:41 +00:00
overflow: hidden;
2010-11-22 05:48:29 +00:00
}
div.content {
2010-11-22 14:50:41 +00:00
margin-left: 300px;
2010-11-22 05:48:29 +00:00
}
2010-11-22 14:50:41 +00:00
ul.tree li.dir {
list-style-type: circle;
}
ul.tree li.file {
list-style-type: square;
}
2010-11-19 05:12:29 +00:00
span.marker {
display: block;
float: left;
border: 1px solid black;
padding-right: 0.2em;
padding-left: 0.2em;
margin-right: 0.2em;
}
span.marker a {
text-decoration: none;
color: black;
}
span.marker a:hover {
text-decoration: underline;
}
span.marker.branch {
background-color: #88ff88;
}
span.marker.tag {
background-color: #ffff88;
}
table.vcs-log {
width: 100%;
}
table.vcs-log th {
text-align: left;
}
table.vcs-log .date,
table.vcs-log .author {
width: 15%;
}
div.vcs-nav {
text-align: center;
}
table.diff {
width: 100%;
border: 1px solid black;
border-collapse: collapse;
}
table.diff td {
padding-left: .3em;
padding-right: .3em;
white-space: pre;
}
table.diff .break {
background-color: #babaee;
2010-11-19 05:12:29 +00:00
}
table.diff .number {
width: 3em;
2010-11-22 20:44:13 +00:00
text-align: right;
background-color: #f0f0f0;
}
table.diff .text {
border-left: 1px solid #e0e0e0;
2010-11-19 05:12:29 +00:00
}
table.diff .add .number {
background-color: #baeeba;
}
table.diff .add .text {
border-left: 1px solid green;
background-color: #e0ffe0;
}
table.diff .del .number {
background-color: #eebaba;
}
table.diff .del .text {
border-left: 1px solid red;
background-color: #ffe0e0;
}
table.diff td {
font-family: monospace;
}