_editorial.css
1.69 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
.editorial-container {
$bigImgWidth: 390px;
$smallImgWidth: 360px;
$smallImgHeight: 240px;
$space: 10px;
@extend .resource-container;
.news-container {
height: calc($smallImgHeight*2+$space+2px);
}
.news {
display: inline-block;
box-sizing: border-box;
.box {
height: calc($smallImgHeight*2+$space+10px);
display: inline-block;
position: relative;
&.bottom-space {
margin-bottom: 20px;
}
&.right-space {
margin-right: 15px;
}
}
.editorial-title {
width: 100%;
height: 70px;
position: absolute;
bottom: 0;
background: url("/channel/jb-bg.png") repeat-x;
color: #fff;
font-size: 14px;
line-height: 70px;
padding: 0 $space;
p {
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
img {
@extend .cursor-pointer;
display: inline-block;
}
&.left {
width: $bigImgWidth;
float: left;
height: calc($smallImgHeight*2+$space+10px);
img {
width: $bigImgWidth;
height: calc($smallImgHeight*2+$space+10px);
}
}
&.right {
width: calc($smallImgWidth*2+$space*2);
float: right;
img,
.box {
width: $smallImgWidth;
height: $smallImgHeight;
}
}
}
}