-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (63 loc) · 1.28 KB
/
style.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
58
59
60
61
62
63
64
65
66
h2, p, ol, ul, li {
margin:0px;
padding:0px;
font-size:13px;
font-family:Arial, Helvetica, sans-serif;
}
#container {
width:300px;
margin:auto;
margin-top:100px;
}
/* --------- COLLAPSIBLE PANELS ----------*/
.expandable-panel {
width:26%;
position:relative;
min-height:30px;
overflow:auto;
margin-bottom: 20px;
border:3px groove #999;
}
.expandable-panel-heading {
width:100%;
cursor:pointer;
min-height:30px;
clear:both;
background-color:#E5E5E5;
position:relative;
}
.expandable-panel-heading:hover {
color:#666;
}
.expandable-panel-heading h2 {
padding:5px 10px 9px 15px;
font-size:18px;
line-height:20px;
}
.expandable-panel-content {
padding:0 15px 0 15px;
margin-top:-999px;
}
.expandable-panel-content p {
padding:4px 0 6px 0;
}
.expandable-panel-content p:first-child {
padding-top:10px;
}
.expandable-panel-content p:last-child {
padding-bottom:15px;
}
.icon-close-open {
width:20px;
height:20px;
position:absolute;
background-image:url(icon-close-open.png);
right:15px;
}
.expandable-panel-content img {
float:right;
padding-left:12px;
}
.header-active {
background-color:#e5e5e5;
}