ColumnBreak_wev8.css
814 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
40
41
42
43
44
45
46
47
.column_break {
background-color: #ffffff;
padding: 6px 0px;
position: relative;
box-sizing: border-box;
height: 36px;
}
.column_break .left_line {
float: left;
width: 6px;
height: 24px;
background: #017AFD;
}
.column_break_midStyle .left_line {
margin: auto;
height: 1px;
background: #ECECEC;
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
}
.column_break .right_line {
margin: auto;
height: 1px;
background: #ECECEC;
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
}
.column_break_midStyle .right_line {
}
.column_break .middle_content {
letter-spacing: 2px;
text-align: center;
padding-left: 13px;
padding-right: 13px;
box-sizing: content-box;
line-height: 24px;
position: absolute;
margin-left: 6px;
}
.column_break_midStyle .middle_content {
margin-left: 0px;
}