-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
71 lines (61 loc) · 979 Bytes
/
options.css
File metadata and controls
71 lines (61 loc) · 979 Bytes
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
:root {
color-scheme: light;
}
body {
margin: 0;
font-family: "Segoe UI", Tahoma, sans-serif;
background: #f4f6fb;
color: #182844;
}
main {
width: min(760px, calc(100vw - 40px));
margin: 30px auto;
padding: 24px;
border-radius: 12px;
background: #ffffff;
box-shadow: 0 8px 22px rgba(15, 25, 40, 0.1);
}
h1 {
margin: 0;
font-size: 1.7rem;
}
.intro {
margin: 8px 0 20px;
color: #3f4d65;
}
label {
display: block;
margin: 16px 0 8px;
font-weight: 600;
}
textarea,
input {
width: 100%;
box-sizing: border-box;
border: 1px solid #c9d2df;
border-radius: 8px;
padding: 10px 12px;
font-size: 0.98rem;
}
textarea {
resize: vertical;
}
.hint {
margin: 8px 0 0;
color: #4f5f7c;
font-size: 0.92rem;
}
button {
margin-top: 20px;
border: none;
border-radius: 8px;
background: #0f59e5;
color: #ffffff;
font-weight: 600;
padding: 11px 15px;
cursor: pointer;
}
#status {
min-height: 1.4em;
margin-top: 10px;
}