Created
August 10, 2017 06:34
-
-
Save qiwihui/eb3a5f0823c2e4ea445c22c9f03273b0 to your computer and use it in GitHub Desktop.
vJmoKo
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
<header> | |
<div class="title"> | |
<h1>over</h1> | |
<h1>five</h1> | |
</div> | |
</header> |
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
@import url('https://fonts.googleapis.com/css?family=Average'); | |
body { | |
font-family: 'Average', serif; | |
} | |
header { | |
background: | |
linear-gradient( | |
rgba(0, 0, 0, 0.9), | |
rgba(0, 0, 0, 0.9) | |
), | |
url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/cheese-curds.jpg); | |
background-size: cover; | |
height: 100vh; | |
} | |
.title { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
color: white; | |
text-align: center; | |
} | |
h1 { | |
text-transform: uppercase; | |
margin: 0; | |
font-size: 3rem; | |
white-space: nowrap; | |
} | |
h2 { | |
font-size: 2rem; | |
} | |
p { | |
margin: 0; | |
font-size: 1.3rem; | |
} | |
main { | |
max-width: 500px; | |
margin: 20px auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment