-
Notifications
You must be signed in to change notification settings - Fork 0
/
overlay.html
82 lines (77 loc) · 1.22 KB
/
overlay.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>overlay</title>
<style>
@import url("https://fonts.googleapis.com/css?family=Montserrat+Alternates");
* {
box-sizing: border-box;
}
html, body {
height: 1090px;
width: 1920px;
overflow: hidden;
padding: 0;
margin: 0;
}
.bg{
background: #16273C;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
animation: grow 1.5s 1.5s 1 ease-out forwards
}
.bricks{
width: 2400px;
position: absolute;
bottom: -4px;
}
.logo{
}
.bricks img{
margin: 0;
padding: 0;
}
.top{
margin-left: -240px;
margin-bottom: 72px;
z-index: 999;
animation: rise 1.5s 1.5s 1 ease-out forwards
}
@keyframes rise {
0% {
bottom: 0px;
}
100% {
bottom: 932px;
}
}
@keyframes grow {
0% {
bottom: 144px;
}
100% {
bottom: 1080px;
}
}
</style>
</head>
<body>
<div class="bg">
</div>
<div class="bricks top">
<img src="lib/brickRow-05.png" />
</div>
<div class="bricks bottom">
<img src="lib/brickRow-05.png" />
</div>
</body>
</html>