segment.css
1.1 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
.m-segment {
overflow: hidden;
}
.m-segment li {
width: 33.3%;
line-height: 1;
text-align: center;
float: left;
background-color: #FFF;
box-sizing: border-box;
position: relative;
}
.m-segment li:after {
position: absolute;
content: '';
border-right: 1px solid #e2e2e2;
display: block;
height: 200%;
width: 0;
top: 0;
right: -1px;
z-index: 1;
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: left top;
transform-origin: left top;
}
.m-segment li .text {
display: block;
color: #333;
font-size: 15px;
padding: 7px 0;
}
.m-segment li .subtext {
line-height: 1;
padding-top: 5px;
}
.m-segment li:first-child {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.m-segment li:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.m-segment li:last-child:after {
display: none;
}
.m-segment .on {
color: #FFF;
background-color: #69b8dc;
}
.m-segment .on:after {
border-color: #69b8dc;
}
.m-segment .on .text {
color: #FFF;
}
.m-segment .on .text .font-gray {
color: #FFF !important;
}