-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvt.css
53 lines (53 loc) · 1017 Bytes
/
vt.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
.b-vt {
font: normal 14px sans-serif;
display: table;
margin-bottom: 50px;
}
.b-vt__tabs,
.b-vt__contents {
display: table-cell;
vertical-align: top;
}
.b-vt__tabs {
border-style: solid;
border-width: 1px 0;
border-color: #dddddd;
background-color: #dddddd;
}
.b-vt__tab {
width: 200px;
height: 40px;
padding: 0 10px;
line-height: 40px;
box-sizing: border-box;
-moz-box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
border-style: solid;
border-width: 1px;
border-color: transparent transparent #ffffff;
background-color: #dddddd;
cursor: pointer;
}
.b-vt__tab_selected {
border-color: transparent transparent #ffffff #dddddd;
background-color: #e4ff99;
cursor: default;
}
.b-vt__contents {
border-style: solid;
border-width: 1px 1px 1px 0;
border-color: #dddddd;
background-color: #e4ff99;
}
.b-vt__content {
font-size: 12px;
display: none;
padding: 0 10px;
}
.b-vt__content_selected {
display: block;
}
.b-lorem {
display: none;
}