-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
51 lines (51 loc) · 875 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
html {
height: 100%;
}
body {
display: flex;
height: 100%;
justify-content: center;
align-items: stretch;
}
#container {
width: 500px;
padding: 10px 20px;
background-color: #E0E0E0;
}
.section-header {
font-size: 18px;
font-weight: normal;
border-bottom: 1px solid;
margin-bottom: 5px;
margin-top: 10px;
}
.input-item {
height: 25px;
line-height: 25px;
padding-top: 5px;
}
.input-label {
display: inline-block;
height: 20px;
line-height: 20px;
font-size: 14px;
}
.input-element {
display: inline-block;
height: 20px;
line-height: 20px;
}
.operation-bar {
margin-top: 20px;
}
.operation-button {
display: inline-block;
padding: 6px 30px;
border-radius: 5px;
font-size: 14px;
outline: none;
}
.button-confirm {
background-color: #66BB6A;
color: white;
}