1
- @import url (font-awesome.min.css);
2
- @import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400" ;
3
-
4
1
@-webkit-keyframes progress-bar-stripes {
5
2
from {
6
3
background-position : 40px 0 ;
9
6
background-position : 0 0 ;
10
7
}
11
8
}
9
+
12
10
@-o-keyframes progress-bar-stripes {
13
11
from {
14
12
background-position : 40px 0 ;
17
15
background-position : 0 0 ;
18
16
}
19
17
}
18
+
20
19
@keyframes progress-bar-stripes {
21
20
from {
22
21
background-position : 40px 0 ;
25
24
background-position : 0 0 ;
26
25
}
27
26
}
27
+
28
28
.progress {
29
29
height : 20px ;
30
30
margin-bottom : 20px ;
34
34
-webkit-box-shadow : inset 0 1px 2px rgba (0 , 0 , 0 , .1 );
35
35
box-shadow : inset 0 1px 2px rgba (0 , 0 , 0 , .1 );
36
36
}
37
+
37
38
.progress-bar {
38
39
float : left;
39
40
width : 0 ;
49
50
-o-transition : width .6s ease;
50
51
transition : width .6s ease;
51
52
}
53
+
52
54
.progress-striped .progress-bar ,
53
55
.progress-bar-striped {
56
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
57
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
58
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
59
+ -webkit-background-size : 40px 40px ;
60
+ background-size : 40px 40px ;
61
+ }
62
+
63
+ .progress .active .progress-bar ,
64
+ .progress-bar .active {
65
+ -webkit-animation : progress-bar-stripes 2s linear infinite;
66
+ -o-animation : progress-bar-stripes 2s linear infinite;
67
+ animation : progress-bar-stripes 2s linear infinite;
68
+ }
69
+
70
+ .progress-bar-success {
71
+ background-color : # 5cb85c ;
72
+ }
73
+
74
+ .progress-striped .progress-bar-success {
75
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
76
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
77
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
78
+ }
79
+
80
+ .progress-bar-info {
81
+ background-color : # 5bc0de ;
82
+ }
83
+
84
+ .progress-striped .progress-bar-info {
85
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
86
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
87
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
88
+ }
89
+
90
+ .progress-bar-warning {
91
+ background-color : # f0ad4e ;
92
+ }
93
+
94
+ .progress-striped .progress-bar-warning {
95
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
96
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
97
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
98
+ }
99
+
100
+ .progress-bar-danger {
101
+ background-color : # d9534f ;
102
+ }
103
+
104
+ .progress-striped .progress-bar-danger {
105
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
106
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
107
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
108
+ }
109
+
110
+ .progress-bar-issue {
111
+ background-color : # 8665c8 ;
112
+ }
113
+
114
+ .progress-striped .progress-bar-issue {
115
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
116
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
117
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
118
+ }
119
+
120
+ .progress-bar-pr-merged {
121
+ background-color : # 4500c8 ;
122
+ }
123
+
124
+ .progress-striped .progress-bar-pr-merged {
125
+ background-image : -webkit-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
126
+ background-image : -o-linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
127
+ background-image : linear-gradient (45deg , rgba (255 , 255 , 255 , .15 ) 25% , transparent 25% , transparent 50% , rgba (255 , 255 , 255 , .15 ) 50% , rgba (255 , 255 , 255 , .15 ) 75% , transparent 75% , transparent);
128
+ }
129
+
130
+ .alert {
131
+ padding : 15px ;
132
+ padding : 15px ;
133
+ margin-bottom : 20px ;
134
+ border : 1px solid transparent;
135
+ border-radius : 4px ;
136
+ }
137
+
138
+ .alert h4 {
139
+ margin-top : 0 ;
140
+ color : inherit;
141
+ }
142
+
143
+ .alert .alert-link {
144
+ font-weight : bold;
145
+ }
146
+
147
+ .alert > p ,
148
+ .alert > ul {
149
+ margin-bottom : 0 ;
150
+ }
151
+
152
+ .alert > p + p {
153
+ margin-top : 5px ;
154
+ }
155
+
156
+ .alert-dismissable ,
157
+ .alert-dismissible {
158
+ padding-right : 35px ;
159
+ }
160
+
161
+ .alert-dismissable .close ,
162
+ .alert-dismissible .close {
163
+ position : relative;
164
+ top : -2px ;
165
+ right : -21px ;
166
+ color : inherit;
167
+ }
168
+
169
+ .alert-success {
170
+ color : # 3c763d ;
171
+ background-color : # dff0d8 ;
172
+ border-color : # d6e9c6 ;
173
+ }
174
+
175
+ .alert-success hr {
176
+ border-top-color : # c9e2b3 ;
177
+ }
178
+
179
+ .alert-success .alert-link {
180
+ color : # 2b542c ;
181
+ }
182
+
183
+ .alert-info {
184
+ color : # 31708f ;
185
+ background-color : # d9edf7 ;
186
+ border-color : # bce8f1 ;
187
+ }
188
+
189
+ .alert-info hr {
190
+ border-top-color : # a6e1ec ;
191
+ }
192
+
193
+ .alert-info .alert-link {
194
+ color : # 245269 ;
195
+ }
196
+
197
+ .alert-warning {
198
+ color : # 8a6d3b ;
199
+ background-color : # fcf8e3 ;
200
+ border-color : # faebcc ;
201
+ }
202
+
203
+ .alert-warning hr {
204
+ border-top-color : # f7e1b5 ;
205
+ }
206
+
207
+ .alert-warning .alert-link {
208
+ color : # 66512c ;
209
+ }
210
+
211
+ .alert-danger {
212
+ color : # a94442 ;
213
+ background-color : # f2dede ;
214
+ border-color : # ebccd1 ;
215
+ }
216
+
217
+ .alert-danger hr {
218
+ border-top-color : # e4b9c0 ;
219
+ }
220
+
221
+ .alert-danger .alert-link {
222
+ color : # 843534 ;
223
+ }
224
+
225
+ .close {
226
+ float : right;
227
+ font-size : 21px ;
228
+ font-weight : bold;
229
+ line-height : 1 ;
230
+ color : # 000 ;
231
+ text-shadow : 0 1px 0 # fff ;
232
+ filter : alpha (opacity=20);
233
+ opacity : .2 ;
234
+ }
235
+
236
+ .close : hover ,
237
+ .close : focus {
238
+ color : # 000 ;
239
+ text-decoration : none;
240
+ cursor : pointer;
241
+ filter : alpha (opacity=50);
242
+ opacity : .5 ;
243
+ }
244
+
245
+ button .close {
246
+ -webkit-appearance : none;
247
+ padding : 0 ;
248
+ cursor : pointer;
249
+ background : transparent;
250
+ border : 0 ;
251
+ }
0 commit comments