-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.css
More file actions
44 lines (38 loc) · 876 Bytes
/
basic.css
File metadata and controls
44 lines (38 loc) · 876 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
/*
Just some basic styles to get you going.
Haven't really tested any of this.
*/
#hidden-content {
/*
You will need to position this block wherever you want it to show up on the page when the showHide button is clicked.
*/
display: none;
background: #ddd;
border: 1px solid #999;
width:100px;
position: absolute;
top:30px;
}
/*If dropdown is set to true, an arrow is added to the button*/
.showHide-dropdown-arrow {
height:15px;
border-left:1px solid #999;
margin: 0 0 0 5px;
padding: 0 0 0 5px;
}
/*"close" link on popup content*/
.showHide-close {
color:#858585;
font-size:0.8em;
}
/*The link that will trigger the showing*/
.showHide-button a {
color:#444;
text-decoration:none;
font-size:0.9em;
}
/*active button state*/
.showHide-button-active {
background:#C2C2C2;
background-image:none;
}