-
Notifications
You must be signed in to change notification settings - Fork 3
/
landing.html
55 lines (53 loc) · 1.44 KB
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;700;900&family=Roboto:wght@300;500;700&display=swap");
body {
background-image: url(./images/Landing.png);
background-size: cover;
background-position: bottom;
background-repeat: no-repeat;
height: 100vh;
font-family: "Maven Pro", sans-serif;
}
.buttons {
position: absolute;
padding: 25px 0;
bottom: 0px;
left: 50%;
transform: translateX(-50%);
}
.primary {
font-size: 14px;
text-align: center;
display: inline-block;
text-decoration: none;
font-family: Maven Pro, sans-serif;
background: #ff006e;
padding-top: 10px;
padding-bottom: 10px;
width: 100px;
color: white;
border: 2px solid #ff006e;
}
.secondary {
background: transparent;
border: 2px solid #ff006e;
padding-top: 10px;
padding-bottom: 10px;
width: 90px;
color: #ff006e;
}
</style>
</head>
<body>
<div class="buttons">
<a href="./index.html" class="primary">Enter (15+)</a>
<button class="secondary">Leave</button>
</div>
</body>
</html>