A Pen by Cory Simmons on CodePen.
Created
September 14, 2015 10:11
-
-
Save ManasN/1753ae44ab7a91271dfc to your computer and use it in GitHub Desktop.
WQQgLg
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 class="faded"> | |
<h1>Faded Out</h1> | |
<p> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad numquam laudantium impedit, officia ullam, ipsa sunt quisquam non, doloremque mollitia eveniet qui accusantium? A laborum sint eos alias, aliquid rem. | |
</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
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700) | |
* | |
margin: 0 | |
padding: 0 | |
box-sizing: border-box | |
html | |
line-height: 1.75 | |
font-family: lato, sans-serif | |
font-weight: 100 | |
padding: 3rem | |
h1 | |
margin: 0 | |
font-weight: 100 | |
.faded | |
padding: 30px | |
width: 300px | |
height: 300px | |
overflow: hidden | |
position: relative | |
&:after | |
content: '' | |
position: absolute | |
display: block | |
width: 100% | |
height: 100% | |
top: 0 | |
background: linear-gradient(to top, white, white 10%, transparent) | |
background-repeat: no-repeat | |
transition: all 500ms ease | |
&:hover | |
&:after | |
background-position: 0 200px |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment