Last active
June 16, 2020 15:23
-
-
Save franciscocobas/295e164d4918e9e49dd82693d99c6040 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
* { | |
padding: 0; | |
margin: 0; | |
} | |
header { | |
background-color: #009688; | |
} | |
nav ol { | |
display: flex; | |
justify-content: flex-end; | |
list-style: none; | |
font-size: 1.5em; | |
color: white; | |
} | |
nav ol li { | |
margin: 1em 2em; | |
} | |
nav li a { | |
color: white; | |
text-decoration: none; | |
} | |
nav li a:hover { | |
color: #e0e0e0; | |
text-decoration: none; | |
} | |
main { | |
background-color: #d0d0d0; | |
font-size: 1.1em; | |
padding: 2em; | |
} | |
main h1 { | |
text-align: center; | |
margin-bottom: 0.5em; | |
color: #345a35; | |
} | |
main p { | |
line-height: 1.5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment