style-paper.css
215 lines
| 3.6 KiB
| text/css
|
CssLexer
Matt Mackall
|
r6661 | body { | ||
margin: 0; | ||||
padding: 0; | ||||
background: white; | ||||
font-family: sans-serif; | ||||
} | ||||
.container { | ||||
padding-left: 115px; | ||||
} | ||||
.main { | ||||
position: relative; | ||||
background: white; | ||||
padding: 2em 2em 2em 0; | ||||
} | ||||
rubik
|
r6864 | #.main { | ||
width: 98%; | ||||
} | ||||
Matt Mackall
|
r6661 | .overflow { | ||
width: 100%; | ||||
overflow: auto; | ||||
} | ||||
.menu { | ||||
width: 90px; | ||||
margin: 0; | ||||
font-size: 80%; | ||||
text-align: left; | ||||
Dirkjan Ochtman
|
r7313 | position: absolute; | ||
Matt Mackall
|
r6661 | top: 20px; | ||
left: 20px; | ||||
right: auto; | ||||
} | ||||
.menu ul { | ||||
list-style: none; | ||||
padding: 0; | ||||
margin: 10px 0 0 0; | ||||
border-left: 2px solid #999; | ||||
} | ||||
.menu li { | ||||
margin-bottom: 3px; | ||||
padding: 2px 4px; | ||||
background: white; | ||||
color: black; | ||||
font-weight: normal; | ||||
} | ||||
.menu li.active { | ||||
font-weight: bold; | ||||
} | ||||
.menu a { color: black; display: block; } | ||||
.search { | ||||
position: absolute; | ||||
top: .7em; | ||||
right: 2em; | ||||
} | ||||
Benoit Allard
|
r7299 | form.search span { | ||
display: none; | ||||
position: absolute; | ||||
top: 40px; | ||||
right: 0px; | ||||
width: 190px; | ||||
padding: 5px; | ||||
background: #ffc; | ||||
font-size: 70%; | ||||
border: 1px solid yellow; | ||||
-moz-border-radius: 5px; /* this works only in camino/firefox */ | ||||
-webkit-border-radius: 5px; /* this is just for Safari */ | ||||
} | ||||
form.search:hover span { display: block; } | ||||
Matt Mackall
|
r6661 | a { text-decoration:none; } | ||
.age { white-space:nowrap; } | ||||
.date { white-space:nowrap; } | ||||
.indexlinks { white-space:nowrap; } | ||||
.parity0 { background-color: #f5f5f5; } | ||||
.parity1 { background-color: white; } | ||||
.plusline { color: green; } | ||||
.minusline { color: red; } | ||||
.atline { color: purple; } | ||||
.navigate { | ||||
text-align: right; | ||||
font-size: 60%; | ||||
margin: 1em 0 1em 0; | ||||
} | ||||
.tag { | ||||
color: #999; | ||||
font-size: 70%; | ||||
font-weight: normal; | ||||
margin-left: .5em; | ||||
vertical-align: baseline; | ||||
} | ||||
/* Common */ | ||||
pre { margin: 0; } | ||||
h2 { font-size: 120%; border-bottom: 1px solid #999; } | ||||
Dirkjan Ochtman
|
r7314 | h2 a { color: #000; } | ||
Matt Mackall
|
r6661 | h3 { | ||
margin-top: -.7em; | ||||
font-size: 100%; | ||||
} | ||||
/* log and tags tables */ | ||||
.bigtable { | ||||
border-bottom: 1px solid #999; | ||||
border-collapse: collapse; | ||||
font-size: 90%; | ||||
Thomas Arendsen Hein
|
r7327 | width: 100%; | ||
Matt Mackall
|
r6661 | font-weight: normal; | ||
text-align: left; | ||||
} | ||||
.bigtable td { | ||||
padding: 1px 4px 1px 4px; | ||||
vertical-align: top; | ||||
} | ||||
Thomas Arendsen Hein
|
r7327 | .bigtable th { | ||
Matt Mackall
|
r6661 | padding: 1px 4px 1px 4px; | ||
Thomas Arendsen Hein
|
r7327 | border-bottom: 1px solid #999; | ||
Matt Mackall
|
r6661 | font-size: smaller; | ||
} | ||||
.bigtable tr { border: none; } | ||||
.bigtable .age { width: 6em; } | ||||
Dirkjan Ochtman
|
r7181 | .bigtable .author { width: 12em; } | ||
Matt Mackall
|
r6661 | .bigtable .description { } | ||
.bigtable .node { width: 5em; font-family: monospace;} | ||||
.bigtable .lineno { width: 2em; text-align: right;} | ||||
.bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;} | ||||
.bigtable td.source { font-family: monospace; white-space: pre; } | ||||
.bigtable .permissions { width: 8em; text-align: left;} | ||||
.bigtable .size { width: 5em; text-align: right; } | ||||
.bigtable .annotate { text-align: right; } | ||||
.bigtable td.annotate { font-size: smaller; } | ||||
.fileline { font-family: monospace; } | ||||
.fileline img { border: 0; } | ||||
/* Changeset entry */ | ||||
Thomas Arendsen Hein
|
r7327 | #changesetEntry { | ||
Matt Mackall
|
r6661 | border-collapse: collapse; | ||
font-size: 90%; | ||||
width: 100%; | ||||
margin-bottom: 1em; | ||||
} | ||||
Thomas Arendsen Hein
|
r7327 | #changesetEntry th { | ||
Matt Mackall
|
r6661 | padding: 1px 4px 1px 4px; | ||
width: 4em; | ||||
text-align: right; | ||||
font-weight: normal; | ||||
color: #999; | ||||
margin-right: .5em; | ||||
vertical-align: top; | ||||
} | ||||
div.description { | ||||
border-left: 2px solid #999; | ||||
margin: 1em 0 1em 0; | ||||
padding: .3em; | ||||
} | ||||
Matt Mackall
|
r6692 | |||
Augie Fackler
|
r6693 | /* Graph */ | ||
Matt Mackall
|
r6692 | div#wrapper { | ||
position: relative; | ||||
border-top: 1px solid black; | ||||
border-bottom: 1px solid black; | ||||
margin: 0; | ||||
padding: 0; | ||||
} | ||||
canvas { | ||||
position: absolute; | ||||
z-index: 5; | ||||
top: -0.7em; | ||||
margin: 0; | ||||
} | ||||
Augie Fackler
|
r6693 | ul#nodebgs { | ||
list-style: none inside none; | ||||
padding: 0; | ||||
margin: 0; | ||||
top: -0.7em; | ||||
} | ||||
Thomas Arendsen Hein
|
r7327 | |||
Augie Fackler
|
r6693 | ul#graphnodes li, ul#nodebgs li { | ||
height: 39px; | ||||
} | ||||
Matt Mackall
|
r6692 | ul#graphnodes { | ||
position: absolute; | ||||
z-index: 10; | ||||
top: -1.0em; | ||||
list-style: none inside none; | ||||
padding: 0; | ||||
} | ||||
ul#graphnodes li .info { | ||||
display: block; | ||||
font-size: 70%; | ||||
position: relative; | ||||
top: -3px; | ||||
} | ||||