forked from olton/metroui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstepper.less
More file actions
39 lines (34 loc) · 772 Bytes
/
Copy pathstepper.less
File metadata and controls
39 lines (34 loc) · 772 Bytes
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
.stepper {
list-style: none;
border-top: 1px @dark dotted;
position: relative;
padding: 0;
margin: 60px 0;
li {
float: left;
width: 32px;
height: 32px;
border-radius: 100%;
margin-left: 20%;
margin-top: -16px;
background-color: @red;
border: 2px @darkRed solid;
position: relative;
&:first-child {
margin-left: 0;
}
&:last-child {
left: 10px;
}
&:hover {
background-color: @lightRed;
}
&.complete {
background-color: @green;
border: 2px @darkGreen solid;
&:hover {
background-color: @lightGreen;
}
}
}
}