-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
170 lines (158 loc) · 2.72 KB
/
options.css
File metadata and controls
170 lines (158 loc) · 2.72 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
body{
font-family: Arial;
margin: 10px;
font-size: 12px;
min-width: 900px;
}
h1{
font-size: 21px;
margin: 0;
padding: 0;
height: 67px;
line-height: 67px;
background-image: url('images/icon_64.png');
background-repeat: no-repeat;
background-position: left center;
padding-left: 76px;
}
h2{
margin: 12px 0 6px 0;
padding: 3px;
border-top: 1px solid #9cc2ef;
background-color: #ebeff9;
font-size: 13px;
font-weight: bold;
}
h3{
margin-top: 0;
font-size: 15px;
}
h4{
margin-top: 0;
font-size: 13px;
}
h4 > label{
display: inline !important;
}
/*__Form__*/
input[type=text],
input[type=password]{
width: 100%;
}
input[type=checkbox]{
display: block;
float: left;
}
/*__*/
.fieldset{
width: 220px;
margin: 0 20px 20px 0;
height: 280px;
float: left;
border: 1px solid #cccccc;
border-radius: 5px;
padding: 12px;
}
.fieldset label{
display: block;
}
.fieldset hr{
margin: 20px -12px 20px -12px;
border: 0;
height: 1px;
background-color: #cccccc;
}
.row{
min-height: 20px;
line-height: 20px;
vertical-align: center;
overflow: hidden;
}
.disabled{
opacity: .1;
}
.disabled a{
cursor: normal;
}
span.splitter{
display: block;
text-align: center;
border-top: 1px solid #cccccc;
line-height: 16px;
margin: 20px 0 10px 0;
}
span.splitter span{
display: inline-block;
padding: 0 5px;
margin-top: -8px;
background-color: #ffffff;
font-weight: bold;
}
/*__Synch Button__*/
a.working{
background: url('images/spinner.gif') no-repeat right center;
padding-right: 20px;
color: #999999;
text-decoration: none;
cursor: default;
}
#syncherror{
-webkit-transition: opacity .5s ease-in-out, height 0s linear .5s;
opacity: 0;
height: 0;
overflow: hidden;
color: red;
padding: 0;
margin: 0;
}
a.error + #syncherror{
-webkit-transition: opacity .5s ease-in-out, height 0s;
height: 20px;
opacity: 1;
}
#savemessage {
-webkit-transition: opacity .5s ease-in-out, height 0s linear .5s;
opacity: 0;
height: 0;
overflow: hidden;
color: blue;
padding: 0 0 0 8px;
margin: 0;
display: inline;
}
#savemessage.show{
-webkit-transition: opacity .5s ease-in-out, height 0s;
height: 20px;
opacity: 1;
}
/*__Shortcuts__*/
input.shortcut{
float: right;
margin: 0;
}
/*__Notes__*/
div.notes{
float: right;
width: 320px;
padding: 6px 20px 0 20px;
border-left: 1px solid #cccccc;
}
.notes dt{
font-size: 12px;
font-weight: bold;
float: left;
margin: 0;
}
.notes dd {
margin: 0 0 1em 55px;
}
/*__Jacob's Additions__*/
#delicious_form {
padding-right: 6px;
}
#delicious_form input {
margin: 5px 0 12px 0;
}
#autosynch, #keyboardshort {
margin: 4px 8px 4px 0;
}