-
Notifications
You must be signed in to change notification settings - Fork 0
/
jiji-test.html
46 lines (36 loc) · 854 Bytes
/
jiji-test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<iframe height="1000px" width="1600px" src="https://jiji.ng/registration.html" frameborder="0" allowfullscreen></iframe>
<style>
*{
box-sizing: border-box;
}
body{
position: relative;
height: 100vh;
width: 100%;
background: #7e7e7e;
overflow: hidden;
}
iframe{
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
margin: auto;
height: 700px;
width: 1200px;
border-radius: 10px;
-webkit-box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
}
</style>
</body>
</html>