-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
60 lines (58 loc) · 1.08 KB
/
styles.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
body {
background: #fff;
font-family: 'Helvetica', 'Verdana', sans-serif;
}
input {
display: inline-block;
vertical-align: middle;
}
.fieldset {
width: 260px;
}
.go_search {
background: url(./images/user_icon_template_19.png) no-repeat scroll center center transparent;
border: 0;
width: 19px;
height: 18px;
cursor: pointer;
}
/* options page */
.options-page {
max-width: 1024px;
margin: 0 auto;
padding: 50px 0;
background: #fefefe;
}
.options-list {
padding-bottom: 30px;
border-bottom: 1px dashed #333;
margin-bottom: 50px;
}
.options-new .options-row {
margin-bottom: 20px;
}
.options-new .options-row button {
display: none;
}
.options-row input {
font-size: 18px;
width: 15%;
padding: 8px;
box-sizing: border-box;
}
.options-row input.required {
box-shadow:0px 0px 10px 0px red;
}
.options-row input + input {
width: 80%;
margin-left: 10px;
}
.options-row button {
border: 0;
background: 0;
cursor: pointer;
outline: none;
}
.options-row button:hover {
background: #eee;
}