Created
December 12, 2015 18:17
-
-
Save stephanielingwood/4e3d06d284c82ec057a7 to your computer and use it in GitHub Desktop.
CSS template for nav bar on the left
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
/* Note to students: Some properties are given to you to fill out, | |
others you can modify as they stand, and if you have time, | |
there are definitely some properties you should add!*/ | |
html { | |
height: 100%; | |
} | |
body { | |
height: 100%; | |
} | |
header { | |
background-color:; | |
padding:5px; | |
font-size: ; | |
display: block; | |
width: 790px; | |
} | |
nav { | |
line-height:; | |
background-color:; | |
width:125px; | |
display: inline-block; | |
vertical-align: top; | |
} | |
nav ul { | |
list-style-type: none; | |
} | |
a { | |
color: ; | |
} | |
section { | |
width: 516px; | |
display: inline-block; | |
} | |
aside { | |
width: 125px; | |
display: inline-block; | |
vertical-align: top; | |
background-color:; | |
font-size: ; | |
} | |
aside ul { | |
list-style-type: none; | |
} | |
footer { | |
width: 790px; | |
background-color:; | |
text-align:; | |
padding:5px; | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment