-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.css
57 lines (50 loc) · 904 Bytes
/
contents.css
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
.ymaps {
padding: 8px;
margin: 10px;
background: #eee;
border-radius: 8px;
border: 1px solid #ddd;
box-shadow: 0 1px 1px #fff inset, 0 -1px 0px #ccc inset;
}
.ymaps:before,
.ymaps:after {
content: " ";
display: table;
}
.ymaps:after {
clear: both;
}
.ymaps > .ymaps-text,
.ymaps > .ymaps-map {
float: left;
box-sizing: border-box;
}
.ymaps > .ymaps-text {
box-shadow: 0 1px 1px #ddd inset;
border: 1px solid #cccccc;
border-radius: 5px;
background: #fff;
}
.ymaps > .ymaps-map:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 15px;
width: 97%;
height: 100%;
background: url('bg.jpg');
}
.col-md-4,
.col-md-8 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-8 {
width: 66.66666667%;
}