Created
August 12, 2014 07:35
-
-
Save ruanyl/fc41aefedbe287e69dcf to your computer and use it in GitHub Desktop.
css text shadow
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
| html, body { | |
| height: 100%; | |
| } | |
| body { | |
| margin: 0; | |
| background: #0A539C; | |
| background: linear-gradient(top, #4293d6 0%,#001e96 100%); | |
| overflow: hidden; | |
| } | |
| .depth { | |
| display: block; | |
| padding: 50px; | |
| color: black; | |
| font: bold 7em Arial, sans-serif; | |
| position: relative; | |
| } | |
| .depth:before, .depth:after { | |
| content: attr(title); | |
| padding: 50px; | |
| color: rgba(255,255,255,.1); | |
| position: absolute; | |
| } | |
| .depth:before { top: 1px; left: 1px } | |
| .depth:after { top: 2px; left: 2px } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment