-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (87 loc) · 2.12 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Firstline Company</title>
<meta name="description" content="firstlinecompany">
<meta name="author" content="Madicorp">
<link href="https://fonts.googleapis.com/css?family=Poppins:700" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
<style>
body {
background: #222b38;
color: #fff;
}
@keyframes fadeIn {
from {top: 20%; opacity: 0;}
to {top: 100; opacity: 1;}
}
@-webkit-keyframes fadeIn {
from {top: 20%; opacity: 0;}
to {top: 100; opacity: 1;}
}
.wrapper {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
animation: fadeIn 1000ms ease;
-webkit-animation: fadeIn 1000ms ease;
}
h1 {
font-size: 50px;
font-family: 'Poppins', sans-serif;
margin-bottom: 0;
line-height: 1;
font-weight: 700;
}
.dot {
color: #bcb641;
}
p {
text-align: center;
margin: 18px;
font-family: 'Muli', sans-serif;
font-weight: normal;
}
.icons {
text-align: center;
}
.icons i {
color: #00091B;
background: #fff;
height: 15px;
width: 15px;
padding: 13px;
margin: 0 10px;
border-radius: 50px;
border: 2px solid #fff;
transition: all 200ms ease;
text-decoration: none;
position: relative;
}
.icons i:hover, .icons i:active {
color: #fff;
background: none;
cursor: pointer !important;
transform: scale(1.2);
-webkit-transform: scale(1.2);
text-decoration: none;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>coming soon<span class="dot">.</span></h1>
<p>Firstline Company.</p>
<div class="icons">
<a href="/"><i class="fa fa-twitter"></i></a>
<a href="/"><i class="fa fa-youtube-play"></i></a>
<a href="/"><i class="fa fa-paper-plane"></i></a>
</div>
</div>
<script>document.addEventListener("touchstart", function(){}, true);</script>
</body>
</html>