-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
113 lines (99 loc) · 1.61 KB
/
Copy pathpopup.css
File metadata and controls
113 lines (99 loc) · 1.61 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
box-sizing: border-box;
}
body {
width: 300px;
margin: 0;
padding: 18px 20px 16px;
background: #282828;
color: #e0e0e0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
header {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 2px;
}
.logo-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: #FFA116;
flex-shrink: 0;
}
h1 {
font-size: 15px;
margin: 0;
font-weight: 700;
color: #fff;
}
.subtitle {
font-size: 12px;
color: #9a9a9a;
margin: 4px 0 16px;
}
label {
display: block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #FFA116;
font-weight: 700;
margin-bottom: 6px;
margin-top: 14px;
}
input,
select {
width: 100%;
padding: 9px 10px;
border-radius: 6px;
border: 1px solid #3f3f3f;
background: #1f1f1f;
color: #e0e0e0;
font-size: 13px;
outline: none;
}
input:focus,
select:focus {
border-color: #FFA116;
}
button#save {
width: 100%;
margin-top: 18px;
padding: 10px;
border: none;
border-radius: 6px;
background: #FFA116;
color: #1a1a1a;
font-weight: 700;
font-size: 13px;
cursor: pointer;
}
button#save:hover {
background: #ffb340;
}
#status {
margin-top: 8px;
font-size: 12px;
min-height: 16px;
color: #6fd08c;
}
.get-key-link {
display: block;
margin-top: 14px;
font-size: 12px;
color: #58a6ff;
text-decoration: none;
}
.get-key-link:hover {
text-decoration: underline;
}
footer {
margin-top: 16px;
font-size: 11px;
line-height: 1.5;
color: #7a7a7a;
border-top: 1px solid #3a3a3a;
padding-top: 12px;
}