Skip to content

Instantly share code, notes, and snippets.

@belocer
Created May 18, 2019 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save belocer/3d585eb67667b2fa2813263b37b09d8a to your computer and use it in GitHub Desktop.
Save belocer/3d585eb67667b2fa2813263b37b09d8a to your computer and use it in GitHub Desktop.
Text Mask, Comic effect using blend modes
<h1>Kaboom</h1>
html, body {
height: 100%;
background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/209981/kaboom-night.jpg');
background-size: cover;
}
h1 {
display: flex;
align-items: center;
justify-content: center;
align-content: center;
height: 100%;
width: 100%;
margin: 0;
font-size: 20vw;
font-family: 'Luckiest Guy', cursive;
background: black;
color: white;
letter-spacing: 0.625rem;
mix-blend-mode: multiply;
text-shadow: 3px 3px 3px rgba(0, 0, 0, 1), 2px 2px 40px rgba(255, 255, 255, 0.7);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment