-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcommingsoon.html
99 lines (83 loc) · 1.97 KB
/
commingsoon.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>updating soon</title>
</head>
<body>
<style>
body {
background: #00091B;
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: #4FEBFE;
}
/*
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>
<div class="wrapper">
<h1>Will be Upated Soon<span class="dot">.</span></h1>
<div class="icon">
<a href="https://www.facebook.com/samudramanthan.iitkgp/" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/samudramanthan.iitkgp/" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/company/samudra-manthan-iit-kharagpur/" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</body>
</html>