-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
49 lines (43 loc) · 797 Bytes
/
popup.css
File metadata and controls
49 lines (43 loc) · 797 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
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border-radius: 10px;
width: 90%;
max-width: 400px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.modal-content h2 {
margin-bottom: 15px;
}
.modal-content label {
display: block;
margin: 10px 0 5px;
}
.modal-content input,
.modal-content select,
.modal-content textarea {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
.modal-buttons {
display: flex;
justify-content: flex-end;
margin-top: 15px;
gap: 10px;
}
.modal-buttons button {
padding: 8px 16px;
cursor: pointer;
}