-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (55 loc) · 1.18 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
<!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>kiko</title>
<style>
body {
min-height: 100%;
max-height: 100%;
height: 100vh;
background-color: #111111;
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
transition: all 2s ease-in-out;
}
header {
perspective: 400px;
}
h1 {
color: #131313;
text-align: center;
font-size: calc(50vw * 0.89);
letter-spacing: -40pt;
transition: all 2s ease-in-out;
transform: rotate3d(1, 0, 0, 360deg) scale(10);
text-shadow: 0 0 1em rgba(0, 0, 0, .15);
}
body:hover {
background-color: #151515;
transition: all 1s ease-in-out;
}
body:hover h1 {
text-decoration: none;
color: #101010;
letter-spacing: -50pt;
transform: rotate3d(1, 1, 1, 0deg) scale(1);
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
</style>
</head>
<body>
<main>
<header>
<h1>kiko</h1>
</header>
</main>
</body>
</html>