This repository has been archived by the owner on Oct 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathtshirt.html
65 lines (57 loc) · 1.73 KB
/
tshirt.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
<html lang="en">
<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">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Monoton" rel="stylesheet">
<title>Well Hello</title>
<style type="text/css">
html {
background-color: #eee;
}
.wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 100%;
}
a {
color: #234;
text-decoration: none;
cursor: default;
}
p {
font-family: Montserrat, sans-serif;
font-size: 20px;
align-items: center;
}
.letter {
display: inline-block;
transition: 50ms;
}
.letter:hover {
font-family: Monoton;
text-transform: uppercase;
transform: skew(-10deg) scale(1.6);
text-align: center;
padding: 5px;
border-radius: 5px;
background-color: black;
color: red;
}
</style>
</head>
<body>
<div class="wrapper">
<a href="https://github.com/dapilcher">
<p id="spin"><span class="letter">I</span> <span class="letter">c</span><span class="letter">n</span> <span class="letter">h</span><span
class="letter">a</span><span class="letter">z</span> <span class="letter">t</span><span class="letter">s</span><span
class="letter">h</span><span class="letter">r</span><span class="letter">t</span> <span class="letter">n</span><span
class="letter">o</span><span class="letter">w</span> <span class="letter">p</span><span class="letter">l</span><span
class="letter">z</span><span class="letter">?</span>
</p>
</a>
</div>
</body>
</html>