-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.css
75 lines (67 loc) · 876 Bytes
/
options.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
71
72
73
74
75
body {
width: 340px;
margin: 20px auto;
font-size: 14px;
color: #333;
}
h2 {
text-align: center;
}
ul {
width: 90%;
padding: 0;
margin: 0 auto;
list-style: none;
}
ul li {
width: 100%;
margin: 0 auto;
}
input {
height: 16px;
display: inline-block;
width: 61%;
margin: 0 4%;
padding: 0;
text-align: center;
}
button {
padding: 5px;
margin: 5px;
border: none;
background-color: red;
color: white;
cursor: pointer;
display: inline-block;
font-size: 12px;
}
button#add-btn {
display: inline-block;
background-color: green;
margin: 5px auto;
}
span {
display: inline-block;
width: 70%;
text-align: center;
}
hr {
border: 0;
border-bottom: 1px solid #ccc;
}
div#form-wrap {
width: 90%;
margin: 0 auto;
}
p#feedback {
width: 55%;
text-align: right;
margin: -2% 10%;
font-size: 10px;
}
.sucess {
color: green;
}
.error {
color: red;
}