-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (68 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
80 lines (68 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<title>Find Unlimited 2020</title>
<style>
body {
background: rgb(168, 1, 1);
background: -moz-linear-gradient(0deg, rgba(168, 1, 1, 0.9976365546218487) 0%, rgba(16, 16, 16, 1) 40%);
background: -webkit-linear-gradient(0deg, rgba(168, 1, 1, 0.9976365546218487) 0%, rgba(16, 16, 16, 1) 40%);
background: linear-gradient(0deg, rgba(168, 1, 1, 0.9976365546218487) 0%, rgba(16, 16, 16, 1) 40%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a80101", endColorstr="#101010", GradientType=1);
background-size: contain;
background-repeat: no-repeat;
margin: 0;
box-sizing: border-box;
}
.wrapper {
height: 100vh;
margin: 0 auto;
}
.containerz {
width: 100%;
padding-top: 60px;
position: relative;
text-align: center;
}
.logo img {
width: 400px;
display: inline-block;
}
@media only screen and (max-width: 600px) {
.logo img {
width: 85%;
}
}
.primary-cta {
color: #ffffff;
margin-top: 40px;
text-align: center;
}
.aff-logos {
width: 100px;
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%);
}
.aff-logos>img {
width: 100px;
}
</style>
</head>
<body>
<section class="wrapper">
<div class="containerz">
<div class="logo"><img src="https://s3.amazonaws.com/websample.blockv.io/samplevatoms/resources/find-unlimited/logo-white.png"
alt="Find Unlimited 2020"></div>
<h1 class="primary-cta">Coming soon!</h1>
</div>
<div class="aff-logos"><img src="https://s3.amazonaws.com/websample.blockv.io/samplevatoms/resources/find-unlimited/aff-logos.png"
alt="powered by vodafone and blockv"></div>
</section>
</body>
</html>