-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathprogress.css
51 lines (45 loc) · 956 Bytes
/
progress.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
---
---
.progress {
text-align: center;
width: 100%;
padding: 5px;
background-color: {{ site.data.colors.progress-color }};
display: block;
}
.step {
width: 10px;
height: 10px;
border: 3px solid {{ site.data.colors.step-color }};
border-radius: 10px;
display: inline-block;
vertical-align: middle;
}
.progress > .step {
margin-top: 5px;
margin-bottom: 5px;
display: inline-block;
}
.step.done {
background-color: {{ site.data.colors.step-done-color }};
border-color: {{ site.data.colors.step-done-border-color }};
}
.step.current {
background-color: {{ site.data.colors.step-color }};
color: white;
text-decoration: none;
font-size: 14px;
width: 20px;
height: 20px;
line-height: 20px;
border-radius: 20px;
border-width: 4px;
}
.same-topic {
background-color: {{ site.data.colors.header-color }};
clear: none;
padding: 5px;
border-radius: 20px;
display: inline-block;
line-height: 10px;
}