-
Notifications
You must be signed in to change notification settings - Fork 2
/
DeleteModal.styles.css
70 lines (58 loc) · 1.16 KB
/
DeleteModal.styles.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#delete-modal-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgb(150, 150, 150, 0.8);
display: grid;
place-items: center;
}
#delete-modal-container > #delete-modal {
background-color: rgb(25, 120, 158);
color: black;
height: 100px;
width: 90%;
max-width: 300px;
padding: 15px;
border-radius: 10px;
user-select: none;
display: grid;
place-items: center;
}
#delete-modal > #prompt-msg {
color: white;
font-weight: 500;
letter-spacing: 0.5px;
}
#btn-container {
display: flex;
gap: 15px;
}
#btn-container > button {
padding: 0.5em 1em;
border: none;
border-radius: 10px;
font-weight: 600;
cursor: pointer;
transition: all 0.1s ease-in;
}
#btn-container > #yes-btn {
background-color: red;
color: white;
}
#btn-container > #yes-btn:hover {
background-color: rgb(255, 55, 55);
}
#btn-container > #yes-btn:active {
background-color: rgb(177, 0, 0);
}
#btn-container > #no-btn {
background-color: rgb(189, 189, 189);
}
#btn-container > #no-btn:hover {
background-color: rgb(234, 234, 234);
}
#btn-container > #no-btn:active {
background-color: rgb(89, 89, 89);
}