-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverification.css
More file actions
98 lines (87 loc) · 1.83 KB
/
verification.css
File metadata and controls
98 lines (87 loc) · 1.83 KB
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
body {
background-color: rgba(0, 0, 0, 0.7);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.verification {
position: fixed;
background-color: #ffffff;
width: 420px;
height: 340px;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
z-index: 100;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
animation: pop 400ms ease-out;
}
.back-drop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 50;
}
.verification h1 {
color: burlywood;
font-size: 1.8rem;
margin-bottom: 1rem;
}
.verification h2 {
font-size: 1.2rem;
color: #333333;
margin-bottom: 0.5rem;
}
.verification-btns {
display: flex;
justify-content: space-between;
gap: 1rem;
margin-top: 1rem;
}
.verification-btn {
width: 120px;
height: 40px;
font-size: 1rem;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
border: none;
transition: all 0.2s ease;
}
.verification-confirm {
background-color: rgb(1, 213, 1);
color: #ffffff;
}
.verification-cancel {
background-color: rgb(255, 41, 41);
color: #ffffff;
}
.verification-confirm:hover {
background-color: #ffffff;
color: rgb(1, 213, 1);
border: 1px solid rgb(1, 213, 1);
}
.verification-cancel:hover {
background-color: #ffffff;
color: rgb(255, 41, 41);
border: 1px solid rgb(255, 41, 41);
}
@keyframes pop {
0% {
transform: scale(0.8);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}