Created
October 5, 2015 17:45
-
-
Save DevelopIntelligenceBoulder/65d3d0aae7eb708e0f48 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
@charset "UTF-8"; | |
article, aside, footer, header, main, nav, section { | |
display: block; | |
} | |
html, body, h1, h2, h3, ul, li, a, p, | |
article, aside, footer, header, main, nav, section { | |
padding: 0; | |
margin: 0; | |
} | |
.banner { | |
background-color: #11233b; | |
color: white; | |
padding: 10px 20px; | |
} | |
body { | |
width: 960px; | |
margin-left: auto; | |
margin-right: auto; | |
background-color: #f0f0f0; | |
font-family: Helvetica, Arial, sans-serif; | |
font-size: 15px; | |
} | |
nav { | |
background-color: #20416c; | |
padding: 5px; | |
margin-top: 1px; | |
} | |
li a { | |
color: white; | |
} | |
li { | |
display: inline; | |
margin-left: 15px; | |
margin-right: 15px; | |
font-size: 20px; | |
font-variant: small-caps; | |
font-weight: bold; | |
} | |
section { | |
background-color: #bbbbbb; | |
margin-top: 10px; | |
padding: 5px; | |
} | |
article { | |
background-color: white; | |
margin-top: 5px; | |
padding: 10px 15px; | |
} | |
main { | |
width: 640px; | |
float: left; | |
margin-bottom: 10px; | |
} | |
aside { | |
background-color: #bbbbbb; | |
width: 270px; | |
float: right; | |
padding: 20px; | |
margin-top: 10px; | |
} | |
footer { | |
clear: both; | |
background-color: #20416c; | |
color: white; | |
padding: 5px 20px; | |
} | |
main ul li { | |
list-style-type: none; | |
font-size: 20px; | |
border-bottom: 1px solid #CCC; | |
padding-top: 6px; | |
padding-bottom: 6px; | |
font-variant: normal; | |
} | |
.peak { | |
border-bottom: 1px solid red; | |
} | |
main ul { | |
margin-top: 10px; | |
padding-left: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment