-
Notifications
You must be signed in to change notification settings - Fork 2
/
opt.css
61 lines (60 loc) · 1.02 KB
/
opt.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
body{
margin: 0;
overscroll-behavior: none;
}
header{
font-size: 24px;
padding: 10px;
color: #505050;
background: #f0f0f0;
border-bottom: 2px solid #a0a0a0;
position: fixed;
width: 100%;
box-sizing: border-box;
}
.form{
padding: 12px;
}
.form select{
margin-right: 10px;
padding: 2px 15px;
width: 80px;
height: 40px;
font-size: 15px;
border: 1px solid #444444;
}
.form-title{
font-size: 18px;
padding: 2px 10px;
border-bottom: 2px solid dodgerblue;
border-left: 12px solid dodgerblue;
}
.form-content{
padding-top: 4px;
padding-left: 22px;
}
.desc{
padding: 5px 0;
font-size: 15px;
}
header #apply{
position: absolute;
right: 8px;
top: 8px;
}
#popup{
display: none;
font-size: 18px;
position: absolute;
background: #ffffff;
padding: 15px;
position: fixed;
top: 0px;
box-sizing: border-box;
left: 0;
width: 100%;
box-shadow: 0 2px 12px 0 rgba(0,0,0,.5);
}
#popup-div{
text-align: right;
}