Last active
August 29, 2015 14:21
-
-
Save ZakharDay/86b1ca124ade4761572b to your computer and use it in GitHub Desktop.
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
html, body, section { | |
width: 100%; | |
height: 100%; | |
} | |
body { | |
font-family: Helvetica, Arial, sans-serif; | |
} | |
section { | |
border-bottom: 1px solid black; | |
} | |
header, | |
footer { | |
width: 100%; | |
height: 40px; | |
background-color: black; | |
text-align: center; | |
color: white; | |
line-height: 40px; | |
} | |
#welcomeScreen, | |
#absolute { | |
display: flex; | |
} | |
#welcomeScreen h1, | |
#absolute h1 { | |
margin: auto; | |
font-size: 130px; | |
font-weight: bold; | |
text-align: center; | |
} | |
#absolute header { | |
position: absolute; | |
top: 0; | |
} | |
#relative { | |
position: relative; | |
} | |
#relative header, | |
#relative footer { | |
position: absolute; | |
} | |
#relative header { | |
top: 0; | |
} | |
#relative footer { | |
bottom: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment