-
Notifications
You must be signed in to change notification settings - Fork 0
/
coming_soon.php
102 lines (100 loc) · 3.51 KB
/
coming_soon.php
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
<!doctype html>
<!-- **This line is extremely important, it tells the browser to use HTML5 instead of HTML 4.1** -->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Imperial Visualisations - Coming Soon</title>
<link rel="icon" href="https://www.imperial.ac.uk/T4Assets/favicon-196x196.png" type="image/x-icon">
<link rel="stylesheet" href="https://manglekuo.com/i-v/styles.css?v=1">
<link rel="stylesheet" href="/assets/ivlogo.css">
<style type="text/css">
/* css here */
body{
display: block;
box-sizing: border-box;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
height: 100%; min-height: 100%; width: 100%; min-width: 100%;
position: absolute; top: 0; right: 0; bottom: 0; left: 0;/* make it full-screen */
background: #003E74;
}
.section{
display: block;
box-sizing: border-box;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
position: relative;
background: #003E74;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
flex-direction: column;
background: #002147;
background: linear-gradient(45deg, #33adff, #99008a);
}
.section>div{
opacity: 0.85;
}
.section>div:nth-child(1){
opacity: 0.2;
position: absolute;
font-size: 1700px;
transform: translate(60px,90px);/*
text-shadow: 0 1px 0 #c9c9c9,
4px 10px 8px rgba(0,0,0,.2),
4px 10px 10px rgba(0,0,0,.2),
4px 10px 20px rgba(0,0,0,.15);*/
}
.section>div:nth-child(2){
opacity: 0.9;
font-size: 200px;
text-align: center;
display: block;
transform: translateY(-60px);
transition: transform 300ms ease-out, text-shadow 300ms ease-out;
text-shadow: 0 1px 0 #c9c9c9,
0 2px 0 #c9c9c9,
0 3px 0 #c9c9c9,
4px 30px 10px rgba(0,0,0,.2),
4px 30px 20px rgba(0,0,0,.15);
}
.section>div:nth-child(2):hover{
opacity: 0.9;
font-size: 200px;
text-align: center;
display: block;
transform: translateY(-90px);
text-shadow: 0 1px 0 #c9c9c9,
0 2px 0 #c9c9c9,
0 3px 0 #c9c9c9,
4px 60px 10px rgba(0,0,0,.2),
4px 60px 20px rgba(0,0,0,.15);
}
.section>div:nth-child(3){
font-size: 40px;
text-align: center;
display: block;
transform: translateY(-100px);
text-shadow: 0 1px 0 #c9c9c9,
0 1.5px 0 #c9c9c9,
4px 10px 8px rgba(0,0,0,.2),
4px 10px 10px rgba(0,0,0,.2),
4px 10px 20px rgba(0,0,0,.15);
}
</style>
</head>
<body class="no-nav">
<div class="section">
<div><span class="icon-iv-logo-v4-small"></span></div>
<div><span class="icon-iv-logo-v4"></span></div>
<div>Coming soon!!!!!<div>
</div>
</body>
</html>