Last active
August 29, 2015 14:24
-
-
Save himynameisdave/2fe9d74300b43fddf261 to your computer and use it in GitHub Desktop.
awwe-new-tab - styles.css
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 { | |
| margin: 0; | |
| padding: 0; | |
| height: 100%; | |
| width: 100%; | |
| } | |
| .main { | |
| background-position: 50% 50%; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| position: relative; | |
| height: 100%; | |
| width: 100%; | |
| } | |
| .greeting { | |
| background: rgba( 245, 245, 245, 0.25 ); | |
| color: #333; | |
| font-family: sans-serif; | |
| font-size: 3rem; | |
| padding: 2rem 4rem; | |
| position: absolute; | |
| left: 50%; top: 50%; | |
| text-transform: uppercase; | |
| transform: translate( -50%, -50% ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment