Created
October 21, 2014 16:06
-
-
Save maxxcrawford/e440cf841ecdc9a8e3e4 to your computer and use it in GitHub Desktop.
FPO Overlay Image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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