-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou.html
107 lines (102 loc) · 2.42 KB
/
thankyou.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<title>Thank You!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
html {
font-size: 100%;
}
body {
font-size: 0.625em;
font: Roboto;
line-height: 1.8;
background-color: #505050;
color: #e3e094;
}
h1 {
font-size: 3.2em;
text-transform: uppercase;
color: #e3e094;
font-weight: 600;
margin-bottom: 30px;
}
h2 {
font-size: 2.4em;
text-transform: uppercase;
color: #fff;
font-weight: 600;
margin-bottom: 30px;
}
p {
font-size: 1.4em;
margin-bottom: 50px;
color: #fff;
}
a {
color: #e3e094;
}
a:hover {
color: #505595;
}
.jumbotron {
background-color: #505595;
color: #e3e094;
padding: 100px 100px 30px;
font-family: Montserrat, sans-serif;
}
.container-fluid {
padding: 20px 25px 30px;
}
.bg-purple {
background-color: #62636d;
}
.bg-grey {
background-color: #252525;
}
@media screen and (min-width: 768px) {
.container {
max-width: 800px;
}
.container-fluid {
max-width: 800px;
}
}
@media screen and (max-width: 768px) {
.col-sm-4 {
text-align: center;
margin: 25px 0;
}
.btn-lg {
width: 100%;
margin-bottom: 35px;
}
}
@media screen and (max-width: 480px) {
.logo {
font-size: 150px;
}
}
</style>
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<!-- Title -->
<div class="container">
<div class="jumbotron text-center">
<h1>Thank You!</h1>
<p>I will respond to your email within 24 hours</p>
</div>
</div>
<!-- Return Home -->
<div id="return" class="container-fluid text-center">
<div>
<p><a href="https://funkatronics.github.io/">go back</a></p>
</div>
</div>
</body>
</html>