-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
36 lines (36 loc) · 1.34 KB
/
index.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
<!--
Coming Soon HTML Template
Name: ComingSoon
Version: 1.0
Developed by: Nitishk Gupta
Github: https://github.com/nitishkgupta/comingsoon
License: MIT
-->
<!DOCTYPE html>
<html>
<head>
<title>Coming Soon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Cabin" rel="stylesheet"></link>
<style type="text/css">
@media (max-width: 726px){
.coverimg {max-height: 35vh!important;}
.heading {font-size: 10vh!important;}
.description {font-size: 5vh!important;}
}
body {background: #6c63ff;font-family: Cabin;color: #fff;}
.container {width: 75%;height: 75%;position: absolute; top:0; bottom: 0; left: 0; right: 0; margin: auto;text-align: center;}
.coverimg {max-height: 45vh;width: auto;filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.4));}
.heading {font-size: 80px;text-shadow: 5px 5px 5px rgba(0,0,0,0.4);margin-top: 25px;margin-bottom: 0;}
.description {font-size: 20px;text-shadow: 1px 1px 1px rgba(0,0,0,0.4);margin-top: 15px;}
</style>
</head>
<body>
<div class="container">
<img src="comingsoonsvg.svg" class="coverimg">
<h1 class="heading">Coming Soon...</h1>
<p class="description">Hold tight! We're working hard to meet you soon!</p>
</div>
</body>
</html>