_follow-us.scss
2.2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* @description: follow-us css
* @author: chenglong.wang@yoho.cn
* @date: 2015/4/21
*/
.follow-us {
margin: 30px auto 0 auto;
//@include retina-sprite($line, comment-home);
border: 1px solid transparent;
> h2 {
font-size: 1.8rem;
margin-top: 18px;
text-align: center;
font-weight: bold;
}
> ul {
margin: 15px 25px 0 25px;
height: auto;
overflow: hidden;
li {
float: left;
margin-right: 32px;
&:nth-of-type(4) {
margin-right: 0;
}
@include hide-text();
a {
display: block;
width: 100%;
height: 100%;
}
}
@each $follow in show, sina, facebook, instagram {
.follow-#{$follow} {
@include retina-sprite($icons, #{$follow});
}
}
}
> .rss {
margin: 18px 25px 0 25px;
height: 21px;
border: 1px solid #000;
position: relative;
font-size: 1.4rem;
.rss-btn, input[type='text'] {
display: block;
height: 21px;
line-height: 21px;
position: absolute;
top: 0;
}
.rss-btn {
background: #000;
width: 65px;
text-align: center;
right: 0;
color: #fff;
font-weight: bold;
}
input[type='text'] {
text-indent: 10px;
display: block;
width: 170px;
left: 0;
background: none;
border: none;
outline: none;
}
}
}
@each $channel, $color in (default, #000),
(fashion, #9b90ff),
(beauty, #ffcaca),
(sport, #84e3ca),
(lifestyle, #ffca72),
(magazine, #7ecaff),
(video, #c9caca) {
##{$channel} {
.follow-us {
@include retina-sprite($line, comment-#{$channel});
h2 {
color: $color;
}
> .rss {
border: 1px solid $color;
.rss-btn {
background: $color;
}
}
}
}
}