-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
63 lines (55 loc) · 948 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
#options-page {
position: absolute;
z-index: 1;
display: none;
width: 60%;
height: 60%;
top: 15px;
left: 49px;
background-color: white;
box-shadow: 0 0 3px 1px white;
}
#options-close {
float: right;
}
#options-surroundings {
position: absolute;
z-index: 1;
display: none;
height: 100%;
width: 288px;
overflow: hidden;
background-color: rgba(0, 0, 0, 40%);
}
.options-section-header {
padding-left: 2px;
font-size: 11px;
border-bottom: 1px solid black;
cursor: default;
background-color: lightgrey;
}
.options-row {
overflow: hidden;
}
.options-label {
padding-left: 2px;
font-size: 9px;
cursor: default;
}
.options-input {
font-size: 9px;
margin: 1px 1px 0 0;
float: right;
}
#options-footer {
position: absolute;
width: 100%;
bottom: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
#options-save {
font-size: 11px;
margin-right: 16px;
}