-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabc.html
92 lines (90 loc) · 2.38 KB
/
abc.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Popup</title>
<style>
body {
background: rgb(45, 47, 94);
font-family: Arial, Helvetica, sans-serif;
}
.contanier {
display: flex;
flex-direction: column;
margin: auto;
width: 99vw;
height: 90vh;
}
.contanier .popup {
width: 30%;
height: 40vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 10px;
gap: 10px;
background: rgb(255, 251, 251);
border-radius: 7px;
color: rgb(48, 44, 44);
margin: auto;
position: relative;
}
.contanier .popup img {
width: 60px;
height: 60px;
border-radius: 50%;
margin-top: -35px;
position: absolute;
top: 0;
}
.div-item {
display: flex;
align-items: center;
flex-direction: column;
width: 90%;
text-align: center;
}
a {
background: rgb(19, 175, 19);
text-decoration: none;
border-radius: 3px;
padding: 10px;
height: 20px;
width: 80%;
color: white;
}
/* Media query setiction started */
@media only screen and (min-width:200px) and (max-width:480px) {
.contanier {
width: 100vw;
height: 100vh;
}
.contanier .popup {
width: 90vw;
height: 30vh;
}
.contanier .popup img {
width: 80px;
height: 80px;
}
.div-item p{
font-size: 18px;
}
}
</style>
</head>
<body>
<div class="contanier">
<div class="popup" id="disp">
<img src="checkBtn.png" alt="">
<div class="div-item">
<h2>Thank You!</h2>
<p>Your ID Card datails has been Successfully Submitted</p><br>
<a href="/">OK</a>
</div>
</div>
</div>
</body>
</html>