Last active
April 9, 2018 03:24
-
-
Save fredngo/c5f1641923ed3d9caa788c659bb25f2d to your computer and use it in GitHub Desktop.
Styles for CookBook
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
body { | |
margin: 0px; | |
font-family: Arial, Helvetica; | |
line-height: 1.5; | |
} | |
img { | |
max-height: 75px; | |
} | |
header { | |
color: black; | |
background-color: wheat; | |
padding: 10px; | |
text-align: center; | |
margin-bottom: 60px; | |
font-size: 36px; | |
font-weight: bolder; | |
display:flex; | |
align-items: center; | |
justify-content: center; | |
} | |
header a { | |
text-decoration: none; | |
} | |
main { | |
max-width: 800px; | |
margin: auto; | |
padding: 0px 20px; | |
} | |
footer { | |
color: white; | |
background-color: grey; | |
padding: 15px; | |
text-align: center; | |
margin-top: 60px; | |
} | |
h1 { | |
border-bottom: 5px solid black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment