2007-08-22 14:29:19 +03:00
|
|
|
/**
|
|
|
|
* GitStats - default style
|
|
|
|
*/
|
2007-08-02 15:07:18 +03:00
|
|
|
body {
|
|
|
|
color: black;
|
2009-12-23 19:49:56 +02:00
|
|
|
background-color: #dfd;
|
2007-08-02 15:07:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
float: left;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt:after {
|
|
|
|
content: ': ';
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
display: block;
|
2008-09-14 16:13:32 +02:00
|
|
|
clear: left;
|
2007-08-02 15:07:18 +03:00
|
|
|
}
|
|
|
|
|
2007-08-02 20:43:03 +03:00
|
|
|
table {
|
|
|
|
border: 1px solid black;
|
|
|
|
border-collapse: collapse;
|
2007-08-16 16:13:20 +03:00
|
|
|
font-size: 80%;
|
2007-08-22 14:29:19 +03:00
|
|
|
margin-bottom: 1em;
|
2007-08-02 20:43:03 +03:00
|
|
|
}
|
|
|
|
|
2009-12-23 19:38:24 +02:00
|
|
|
table.noborders {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.noborders td {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2007-08-16 16:13:20 +03:00
|
|
|
.vtable {
|
|
|
|
float: right;
|
|
|
|
clear: both;
|
2007-08-02 20:43:03 +03:00
|
|
|
}
|
|
|
|
|
2009-12-24 10:46:38 +02:00
|
|
|
table.tags td {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2010-04-02 16:01:25 +03:00
|
|
|
td {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
2007-08-02 20:43:03 +03:00
|
|
|
th {
|
2007-08-22 14:29:19 +03:00
|
|
|
background-color: #ddf;
|
2007-08-02 20:43:03 +03:00
|
|
|
}
|
|
|
|
|
2008-10-20 21:42:36 +02:00
|
|
|
th a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2007-08-02 20:43:03 +03:00
|
|
|
tr:hover {
|
2007-08-22 14:29:19 +03:00
|
|
|
background-color: #ddf;
|
2007-08-02 20:43:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
border: 1px solid black;
|
|
|
|
padding: 0.2em;
|
2007-08-16 16:13:20 +03:00
|
|
|
padding-left: 0.3em;
|
|
|
|
padding-right: 0.2em;
|
2007-08-02 20:43:03 +03:00
|
|
|
}
|
|
|
|
|
2007-08-22 14:29:19 +03:00
|
|
|
/* Navigation bar; tabbed style */
|
2007-08-04 20:46:28 +03:00
|
|
|
.nav {
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
padding: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav ul {
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
2009-10-26 18:53:28 +02:00
|
|
|
margin: 0;
|
2007-08-16 15:10:46 +03:00
|
|
|
padding: 0;
|
2007-08-04 20:46:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav li a {
|
|
|
|
padding: 0.3em;
|
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
border: 1px solid black;
|
|
|
|
margin: 0.5em;
|
2007-08-16 15:10:46 +03:00
|
|
|
background-color: #ddf;
|
2007-08-04 20:46:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav li a:hover {
|
|
|
|
background-color: #ddd;
|
2007-08-16 15:10:46 +03:00
|
|
|
border-bottom: 1px solid #ddf;
|
2007-08-04 20:46:28 +03:00
|
|
|
}
|
|
|
|
|
2007-08-07 16:11:14 +03:00
|
|
|
img {
|
|
|
|
border: 1px solid black;
|
|
|
|
padding: 0.5em;
|
|
|
|
background-color: white;
|
|
|
|
}
|
2007-08-07 18:36:11 +03:00
|
|
|
|
2008-10-20 21:42:36 +02:00
|
|
|
th img {
|
|
|
|
border: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
background-color: #ddf;
|
|
|
|
}
|
|
|
|
|
2007-08-16 15:56:06 +03:00
|
|
|
h1 a, h2 a {
|
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1:hover a:after,
|
|
|
|
h2:hover a:after {
|
|
|
|
content: '¶';
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2009-12-23 19:49:56 +02:00
|
|
|
h1 {
|
|
|
|
font-size: x-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
background-color: #564;
|
|
|
|
border: 1px solid black;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
color: white;
|
|
|
|
font-size: large;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 a {
|
|
|
|
color: white;
|
|
|
|
}
|
2010-01-17 08:48:22 +02:00
|
|
|
|
|
|
|
.moreauthors {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|