-
Notifications
You must be signed in to change notification settings - Fork 7
/
options.css
79 lines (62 loc) · 819 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
76
77
78
79
html {
min-width: 600px;
}
body, #status {
margin-top: 0;
}
#status {
background: lightblue;
border-radius: 4px;
padding: 8px;
}
button {
padding: 2px 12px;
text-align: center;
}
.row {
display: flex;
flex-direction: row;
}
.column {
flex: 1 1 50%;
display: flex;
flex-direction: column;
margin: 0 12px;
}
.column select {
display: block;
width: 100%;
flex: 1 1 100%;
}
.column button {
flex: 0 0 auto;
margin: 12px 0;
}
.column input {
margin-bottom: 8px;
}
.actions {
text-align: right;
}
#custom-form {
margin: 0 12px;
align-items: stretch;
}
#custom-form label {
flex: 0 0 auto;
align-self: center;
}
#custom-form input {
margin: 0 8px;
min-width: 0;
}
#custom-form button {
display: block;
flex: 1 1 auto;
}
#custom-name {
flex: 2 1 0;
}
#custom-url {
flex: 4 1 0;
}