-
Notifications
You must be signed in to change notification settings - Fork 0
/
DeleteMsg.css
110 lines (110 loc) · 1.9 KB
/
DeleteMsg.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
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
.deleteBlock{
height: 200px;
width: 360px;
position: fixed;
top: 220px;
margin: 0;
background-color: white;
border-radius: 25px;
z-index: 510;
display: none;
}
#deleteHeader{
font-family: Calibri, sans-serif;
height: 30px;
display: flex;
align-items: center;
border: none;
border-bottom: 1px solid lightgray;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
margin-left: .5px;
width: 99.5%;
margin-right: 1px;
}
.deleteBlock p{
padding-left: 10px;
font-weight: bold;
color: dimgray;
}
.deleteBlock p:hover{
cursor: default;
}
#x{
background-color: white;
border: none;
height: 30px;
width: 35px;
position: absolute;
color: #A91B0D;
right: 0;
font-weight: bolder;
border-top-right-radius: 25px;
}
#x:hover{
background-color: red;
color: white;
}
#message{
height: 80px;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
padding-top: 25px;
}
#warningMsg{
color: black;
font-weight: normal;
position: relative;
left: 2px;
max-width: 290px;
justify-content: center;
}
#deleteButtons{
display: flex;
justify-content: center;
gap: 19px;
height: 30px;
}
#yes,#no{
color: black;
background-color: white;
border: none;
border-radius: 5px;
width: 45px;
font-weight: bold;
}
#yes{
outline: 1px dotted blue;
}
#yes:hover{
cursor: pointer;
background-color: blue;
color: white;
}
#no{
outline: 1px dotted black;
}
#no:hover{
cursor: pointer;
background-color: black;
color: white;
}
.deleteBlock img{
position: relative;
right: 0;
width: 40px;
height: 40px;
}
@media(max-width: 500px){
.deleteBlock header{
font-size: 13px;
}
.deleteBlock p{
color: darkgray;
}
#message{
font-size: 17px;
}
}