Skip to content

Instantly share code, notes, and snippets.

Created May 29, 2014 04:03
Show Gist options
  • Save anonymous/68728d14c5f222b1820a to your computer and use it in GitHub Desktop.
Save anonymous/68728d14c5f222b1820a to your computer and use it in GitHub Desktop.
A Pen by Secret Sam.
<section>
<p><span>have fun</span><p>
<h1>Do <br />good<br /> work</h1>
<p><span>make money. build business</span></p>
</section>
@import url(http://fonts.googleapis.com/css?family=Oswald:700);
$dark_gray: #3d3d3d;
section {
text-align: center;
width: 80%;
max-width: 600px;
height: 100%;
position: relative;
margin: 0 auto;
overflow: hidden;
}
h1 {
font-size: 9.0em;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
background: url(http://karshhagan.com/demos/sxsb/cto2.gif) left center no-repeat;
background-size: cover;
/* BACKGROUND CLIP TO ALLOW GIF TO MASK THROUGH */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
margin: 40px;
font-size: 2.2em;
font-family: 'Didot', serif;
color: $dark_gray;
span {
position: relative;
display: inline-block;
line-height: 1;
&:after, &:before {
content: "";
position: absolute;
top: 50%;
height: 1px;
background: $dark_gray;
width: 99999px;
}
&:before {
left: 100%;
margin-left: 20px;
}
&:after {
right: 100%;
margin-right: 20px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment