-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.linksbar.css
70 lines (57 loc) · 1.23 KB
/
jquery.linksbar.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
67
68
69
70
/* Extremely basic set of style rules to show how linksbar could be presented.
* Hopefully if you use this you'll be able to create a better stylesheet
* to make it visually integrate into your site a little better.
*/
.linksbar_links {
float: left;
}
.linksbar_links a {
border: 1px solid black;
padding: 2px 4px;
margin: 0 3px;
}
.linksbar_buttons {
float: right;
}
.linksbar_buttons a {
color: white;
background-color: black;
padding: 2px 5px;
margin: 0 1px;
font-weight: bold;
text-align: center;
text-decoration: none;
}
/* Styles for the add and remove forms */
#linksbar_prevent_click {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: black;
opacity: 0.9;
}
#linksbar_addlink_form, #linksbar_removelink_form {
position: fixed;
top: 100px;
left: 200px;
width: 400px;
background-color: white;
}
#linksbar_addlink_form .field, #linksbar_removelink_form .field {
margin: auto;
}
#linksbar_removelink_form .field {
text-align: center;
}
#linksbar_addlink_form label, #linksbar_removelink_form label {
width: 120px;
float: left;
text-align: right;
padding: 0 1em;
}
#linksbar_addlink_form .buttons, #linksbar_removelink_form .buttons {
text-align: center;
margin: 0.8em 0;
}