forked from span/gitstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitstats.css
157 lines (127 loc) · 1.71 KB
/
gitstats.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/**
* GitStats - default style
*/
body {
color: black;
background-color: #fefefe;
font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
color: #333;
line-height: 1.5em;
}
h1 a, h2 a {
text-decoration: none;
color: #666;
}
h1:hover a:after,
h2:hover a:after {
content: '¶';
color: #555;
}
h1 {
font-family: Georgia, 'Times new roman', "Times", serif;
color: #999;
font-style: italic;
font-weight: normal;
font-size: 2.5em;
}
h2 {
color: #999;
clear: both;
font-weight: normal;
border-bottom: 1px solid #CCC;
padding: 1em 0 0.5em 0;
}
a {
color: #1E90FF;
text-decoration: none;
}
a:visited {
color: #03BFFA;
}
dl {
margin: 0;
}
dt {
margin: 1em 1em 0em 0em;
clear: both;
color: #666;
}
dt:after {
content: ': ';
}
dd {
display: block;
clear: left;
}
table {
border-collapse: collapse;
font-size: 0.8em;
margin-bottom: 1em;
}
table.noborders {
border: none;
}
table.noborders td {
border: none;
}
.vtable {
float: left;
clear: both;
}
table.tags td {
vertical-align: top;
}
tbody {
border: 1px solid #CCC;
}
td {
background-color: white;
}
img {
background-color: white;
}
th {
background-color: #EEE;
padding: 0.5em;
}
th a {
text-decoration: none;
}
th img {
border: 0px;
padding: 0px;
background-color: #ddf;
}
tr:hover {
background-color: #ddf;
}
td {
border: 1px solid #CCC;
padding: 0.2em 1em;
}
/* Navigation bar; tabbed style */
.nav {
border-bottom: 1px solid #CCC;
overflow: hidden;
}
.nav ul {
float:left;
width:100%;
padding:0;
margin:0;
list-style-type:none;
}
.nav li {
display: inline;
}
.nav li a {
float: left;
text-decoration: none;
padding: 0.5em 1.5em;
}
.nav li a:hover {
background-color: #eee;
}
.moreauthors {
font-size: 80%;
}