-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
80 lines (68 loc) · 1.02 KB
/
options.css
File metadata and controls
80 lines (68 loc) · 1.02 KB
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
80
:root {
color-scheme: light;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body {
margin: 0;
background: #f8fafc;
color: #102039;
}
.layout {
max-width: 720px;
margin: 32px auto;
padding: 0 16px 32px;
}
h1 {
margin-bottom: 0;
}
h2 {
font-size: 18px;
margin: 0 0 10px;
}
section {
background: #fff;
border: 1px solid #dce3f1;
border-radius: 12px;
padding: 14px;
margin: 16px 0;
}
.hint {
margin: 0 0 10px;
color: #4d638d;
font-size: 13px;
}
label {
display: block;
margin: 8px 0;
}
input[type='text'],
textarea {
width: 100%;
box-sizing: border-box;
border: 1px solid #c9d5ef;
border-radius: 8px;
padding: 8px;
margin-top: 6px;
}
.actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}
button {
border: 0;
border-radius: 8px;
padding: 9px 12px;
background: #1f5fff;
color: #fff;
font-weight: 600;
cursor: pointer;
}
button.secondary {
background: #e7ecf8;
color: #1f2a44;
}
#savedState {
font-size: 13px;
}