-
Notifications
You must be signed in to change notification settings - Fork 0
/
safety.css
64 lines (58 loc) · 1.17 KB
/
safety.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
.copy-message {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
.copy-message-content {
background-color: #fff;
color: #000;
border-radius: 5px;
padding: 20px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.copy-message-content i {
color: #ff0000;
font-size: 30px;
margin-bottom: 10px;
}
.copy-message-content p {
font-size: 20px;
margin: 0;
}
.prevent-copy-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.prevent-copy-content {
background-color: #fff;
color: #000;
border-radius: 5px;
padding: 20px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
text-align: center;
}
.prevent-copy-content p {
font-size: 20px;
margin: 0;
}