_brand-img-box.css
596 Bytes
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
.brand-img-box {
width: 565px;
box-sizing: border-box;
display: inline-block;
&.mb10 {
margin-bottom: 10px;
}
&.mb20 {
margin-bottom: 20px;
}
&.right {
float: right;
}
img {
float: left;
}
.big-img {
width: 100%;
height: 340px;
}
.small-img {
width: 281px;
height: 285px;
display: inline-block;
box-sizing: content-box;
border: 1px solid $grayBorder;
border-top: none;
&.first {
border-right: none;
}
}
}