-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
53 lines (47 loc) · 943 Bytes
/
popup.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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #1e1e2f;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 250px;
}
.form-container {
background-color: #2c2c3a;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 400px;
width: 100%;
}
h1 {
text-align: center;
font-size: 1.8rem;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
select {
width: 100%;
padding: 8px;
border: 1px solid #444;
border-radius: 4px;
background-color: #1e1e2f;
color: #e0e0e0;
}
input[type="range"] {
cursor: pointer;
width: 92%;
background-color: #1e1e2f;
color: #e0e0e0;
border: 1px solid #444;
}