Skip to content

Instantly share code, notes, and snippets.

@maxxcrawford
Created October 21, 2014 16:06
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 maxxcrawford/e440cf841ecdc9a8e3e4 to your computer and use it in GitHub Desktop.
Save maxxcrawford/e440cf841ecdc9a8e3e4 to your computer and use it in GitHub Desktop.
FPO Overlay Image
// FPO Caption
.fpo-light {
position: relative;
&::after {
content: "FPO";
font-family: sans-serif;
font-size: 150px;
position: absolute;
width: 100%;
text-align: center;
top: 50%;
z-index: 100;
display: block;
left: 0;
padding: 0;
margin: -60px 0 0;
line-height: 120px;
opacity: 0.8;
color: white;
}
}
.fpo-dark {
@extend .fpo-light;
&::after {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment