-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbase.css
More file actions
156 lines (134 loc) · 3.36 KB
/
base.css
File metadata and controls
156 lines (134 loc) · 3.36 KB
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
/* Github Box */
.github-box {
font-family: "Helvetica Neue", Arial, sans-serif;
background: #fafafa;
border: 1px solid #ddd;
color: #666;
border-radius: 5px;
float: left;
margin-right: 1.2em;
margin-bottom: 2em;
width: 46%;
}
.github-box a {
color: #4183C4;
border: none;
}
/* Github Box Header */
.github-box .github-box-header {
position: relative;
border-bottom: 1px solid #ddd;
border-radius: 5px 5px 0 0;
background: #fcfcfc;
background: -moz-linear-gradient(#fcfcfc, #ebebeb);
background: -webkit-linear-gradient(#fcfcfc, #ebebeb);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc',endColorstr='#ebebeb')";
}
.github-box .github-box-header h3 {
font-family: Helvetica, Arial, sans-serif;
font-weight: normal;
font-size: 16px;
color: gray;
margin: 0;
padding: 10px 10px 10px 10px;
}
.github-box .github-box-header h3 a {
font-weight: bold
}
/* Github Box Header - Stats */
.github-box .github-box-header .github-stats {
position: absolute;
top: 10px;
right: 10px;
background: white;
border: 1px solid #ddd;
border-radius: 3px;
font-size: 11px;
font-weight: bold;
line-height: 21px;
height: 21px;
}
.github-box .github-box-header .github-stats a {
display: inline-block;
height: 21px;
color: #666;
padding: 0 5px 0 18px;
background: url('btn-sprite.png') no-repeat;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
}
.github-box .github-box-header .github-stats a:hover {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
.github-box .github-box-header .github-stats .repo-watchers {
border-right: 1px solid #ddd;
background-position: 3px 4px;
}
.github-box .github-box-header .github-stats .repo-forks {
background-position: 2px -14px;
padding-left: 15px;
}
/* Github Box Content */
.github-box .github-box-content {
padding: 10px;
font-weight: 300;
font-size: 0.7em;
}
.github-box .github-box-content p {
margin: 0;
}
.github-box .github-box-content .repo-link {
font-weight: bold;
}
/* Github Box Download */
.github-box .github-box-download {
position: relative;
border-top: 1px solid #ddd;
background: white;
border-radius: 0 0 3px 3px;
padding: 10px;
height: 24px;
}
.github-box .github-box-download .repo-update {
margin: 0;
font-size: 11px;
color: #666;
line-height: 24px;
}
.github-box .github-box-download .repo-update strong {
font-size: 12px;
font-weight: bold;
color: #000;
}
.github-box .github-box-download .repo-download {
position: absolute;
display: block;
top: 10px;
right: 10px;
height: 24px;
line-height: 24px;
font-size: 12px;
color: #666;
font-weight: bold;
text-shadow: 0 1px 0 rgba(255,255,255,0.9);
padding: 0 10px;
border: 1px solid #ddd;
border-bottom-color: #bbb;
border-radius: 3px;
display: block;
text-indent: -9999px;
width: 24px;
padding: 0;
background: url('btn-sprite.png') no-repeat 4px -31px,-webkit-linear-gradient(whiteSmoke, #E5E5E5);
background: url('btn-sprite.png') no-repeat 4px -31px,-moz-linear-gradient(#f1f7fa, #dbeaf1);
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
}
.github-box .github-box-download .repo-download:hover {
color: #527894;
border-color: #cfe3ed;
border-bottom-color: #9fc7db;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}