-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (102 loc) · 2.4 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
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Okimoti</title>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
background-image: url('./texture.jpg');
background-repeat: repeat;
display: flex;
align-items: center;
justify-content: center;
-webkit-font-smoothing: antialiased;
font-family: 'Avenir Next', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
html body {
background: rgba(0, 0, 0, 0.3);
}
h1 {
color: #fff;
font-size: 20px;
letter-spacing: 2px;
}
#wrapper {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: radial-gradient(rgba(4,24,8,0.4), rgba(0,0,0,0.1))
}
#logo {
filter: drop-shadow(0 0 60px rgba(250, 91, 82, 0.4));
animation: heart 1.9s cubic-bezier(0.86, 0, 0.07, 1) 0.75s infinite;
}
@keyframes heart {
0% {
transform: scale(1);
}
1% {
transform: scale(1.05);
}
35% {
transform: scale(1);
}
}
@keyframes bgflash {
0% { height: 0; transform: translateY(0);}
50% { height: 100%; transform: translateY(0);}
100% { height: 100%; transform: translateY(100%);}
}
a {
width: 140px;
height: 36px;
border: solid 1px #fff;
border-radius: 4px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
margin-top: 8px;
font-weight: bold;
overflow: hidden;
position: relative;
}
a::before {
width: 100%;
height: 0;
background: #fff;
content: '';
display: block;
left: 0;
top: 0;
position: absolute;
}
a:hover::before {
animation: bgflash 0.3s ease-out;
transform: translateY(0);
}
</style>
</head>
<body>
<div id="wrapper">
<img id="logo" src="/logo.svg" width="200">
<h1>
<img src="/logotype.svg" width="280" alt="Okimoti Void Alliance">
</h1>
<a href="https://github.com/Okimoti" target="_blank">
Check it out
</a>
</div>
</body>
</html>