Skip to content

Instantly share code, notes, and snippets.

@zsxsoft
Last active November 16, 2016 05:37
Show Gist options
  • Save zsxsoft/1db2f570df2da1b49aeb9572ec06970f to your computer and use it in GitHub Desktop.
Save zsxsoft/1db2f570df2da1b49aeb9572ec06970f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
font-family: sans-serif;
background-color: black;
}
.container {
position: relative;
transform: scale(1) rotate(0deg) translate(0px, 0px) skew(-3deg, 0deg);
}
.whitealbum {
background-image: linear-gradient(to bottom, #162039, #5695b1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 5em;
}
.whitealbum:after {
content: "WHITE ALBUM";
text-shadow: -1px -1px 5px #ffffff, 1px 1px 5px #ffffff;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
</style>
</head>
<body>
<div class="container">
<div class="whitealbum">
WHITE ALBUM
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment