_links.scss
1.08 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
/**
* Created by chenglong.wang@yoho.cn on 2014/1/26.
*/
.links{
margin: 20px 15px 35px 15px;
min-height: 400px;
>h2{
font-size: 1.8rem;
font-weight: bold;
text-align: center;
}
.link-text{
font-size: 1.4rem;
font-weight: bold;
margin-top: 28px;
.links-list{
margin-top: 20px;
li{
float: left;
//width: 33%;
margin-bottom: 20px;
margin-right: 30px;
a{
@include unstyled-link();
color: #000;
@include ellipsis();
}
}
.mr-none{
margin-right: 0;
}
}
}
.link-logo{
margin-top: 35px;
>h3{
font-size: 1.4rem;
font-weight: bold;
}
.links-pic-list{
margin-top: 20px;
li{
width: 33%;
float: left;
margin-bottom: 15px;
text-align: center;
height: 31px;
a{
display: block;
}
img{
display: block;
overflow: hidden;
margin: 0 auto;
}
}
}
}
ul{
height: auto;
overflow: hidden;
}
}