-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
53 lines (42 loc) · 876 Bytes
/
demo.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
h1,
h2,
h3 {
font-weight: normal;
}
/* tabs & panels */
.markup-demo .tab,
.markup-demo .panel {
margin-left: 2em;
}
.markup-demo .tabbed-panels:before,
.markup-demo .tabbed-panels:after {
display: block;
}
.markup-demo .tabbed-panels:before,
.markup-demo .tabbed-panels .panel:before {
content: '<div class="' attr(class) '">';
}
.markup-demo .tabbed-panels:after,
.markup-demo .tabbed-panels .panel:after {
content: '</div>';
}
/* tabs */
.markup-demo .tabbed-panels .tab {
display: block;
margin-top: .5em;
margin-bottom: .5em;
background: #ddd !important;
border-radius: 4px !important;
}
.markup-demo .tabbed-panels .tab:before {
content: '<button class="' attr(class) '">';
}
.markup-demo .tabbed-panels .tab:after {
content: '</button>';
}
/* panels */
.markup-demo .tabbed-panels .panel {
display: block;
border: initial;
padding: initial;
}