Master from desktop!

This commit is contained in:
Chuck Dries 2017-02-16 00:06:34 -07:00
parent b6b7a21c76
commit 26cf76f9f2
18 changed files with 15781 additions and 855 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
background: black;
}
a {
transition-duration: .5s;
color: white;
font-style: italic;
text-decoration: underline;
display: block;
transform-origin: 15px 10px;
}
a:hover {
color: #ed1a76;
transform: scale(2) rotate(180deg) translate(-10px, -10px);
}
</style>
</head>
<body>
<a href="https://medium.com/@chuckdries">Blog</a>
</body>
</html>