_footer_tab.css
1.17 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
.footer-tab {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 100px;
padding-top: 20px;
box-sizing: border-box;
background: #fff;
border-top: 1px solid #b0b0b0;
z-index: 3;
.tab-item {
float: left;
width: 20%;
text-align: center;
color: #b0b0b0;
&.current.boys {
color: #414141;
}
&.current.girls {
color: #FF88AE;
}
&.current.kids {
color: #7ad9f9;
}
&.current.lifestyle {
color: #4f4138;
}
}
.tab-icon {
font-size: 40px;
line-height: 1;
}
.tab-name {
margin-top: 10px;
font-size: 20px;
line-height: 1;
}
}
.boys-wrap {
.footer-tab {
.tab-item.current {
color: #414141;
}
}
}
.girls-wrap {
.footer-tab {
.tab-item.current {
color: #FF88AE;
}
}
}
.kids-wrap {
.footer-tab {
.tab-item.current {
color: #7ad9f9;
}
}
}
.lifestyle-wrap {
.footer-tab {
.tab-item.current {
color: #4f4138;
}
}
}