-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>21/23</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<style type="text/css">
html {
min-height: 100%;
overflow: hidden;
background: #1d2e3f;
background: linear-gradient(to top, #1d2e3f 0, #415f7d 35%, #2e465f 70%, #1d2e3f 100%);;
}
.container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-family: 'Montserrat', Helvetica, 'Helvetica Neue', Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.container .logo-container {
position: relative;
background: #fff;
box-shadow: 0 0 .7em #afafaf;
width: 20vw;
height: 20vw;
}
.container .logo-container .logo-21,
.container .logo-container .logo-23 {
position: absolute;
margin: 1vw;
font-size: 8vw;
line-height: 8vw;
color: #000;
}
.container .logo-container .logo-21 {
top: 0;
left: 0;
}
.container .logo-container .logo-23 {
bottom: 0;
right: 0;
}
.container .logo-container .separator {
position: absolute;
width: 100%;
top: 9.6vw;
background: #000;
height: .8vw;
transform: rotateZ(-45deg) scaleX(.8);
border-radius: 0 10vw;
}
</style>
</head>
<body>
<div class="container">
<div class="logo-container">
<div class="logo-21">21</div>
<div class="logo-23">23</div>
<div class="separator"></div>
</div>
</div>
</body>
</html>