Skip to content

Commit

Permalink
add tshirt.html (lingonsaft#2181)
Browse files Browse the repository at this point in the history
  • Loading branch information
dapilcher authored and BennyCarlsson committed Oct 21, 2018
1 parent 03aa702 commit 496e1e3
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions tshirt.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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: #333;
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: blue;
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>

0 comments on commit 496e1e3

Please sign in to comment.