A Pen by Captain Anonymous on CodePen.
Created
December 14, 2014 00:13
-
-
Save anonymous/0f2d30f12945ae7fdf41 to your computer and use it in GitHub Desktop.
myPxYP
This file contains 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
<div id="pommes" class="mayo ketchup"> | |
<div class="bildueberschrift">ueberschrift</div> | |
<!-- http://www.khaosok-treehouse.com/images/tours/tubing%20sok%20river%20tree%20house%205.jpg --> | |
<p class="unterschrift"> | |
das ist ein abschnitt | |
</p> | |
</div> |
This file contains 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
#pommes { | |
opacity: 0.8; | |
color: #fff; | |
letter-spacing: 5px; | |
transition: 0.5s ease-in; | |
background: transparent; | |
width: 400px; | |
height: 300px; | |
background: url(http://www.khaosok-treehouse.com/images/tours/tubing%20sok%20river%20tree%20house%205.jpg); | |
text-align: center; | |
} | |
#pommes .bildueberschrift{ | |
font-size: 12pt; | |
transition: 0.5s ease-in; | |
position: relative; | |
top: 40%; | |
left:10px; | |
padding:0; | |
} | |
#pommes:hover .bildueberschrift { | |
font-size: 30pt; | |
text-shadow: 9px 9px 9px #000; | |
} | |
#pommes .unterschrift { | |
position: relative; | |
padding-left: 8px; | |
top: 52%; | |
opacity:0; | |
transition: 1.2s ease-in; | |
} | |
#pommes:hover .unterschrift { | |
opacity:1; | |
font-size: 156%; | |
text-shadow: 3px 3px 4px #000; | |
top: 48%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment