Skip to content

Instantly share code, notes, and snippets.

@kristynrb
Created November 9, 2016 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristynrb/89e35c06697d0caf3b9a50df2a4299d1 to your computer and use it in GitHub Desktop.
Save kristynrb/89e35c06697d0caf3b9a50df2a4299d1 to your computer and use it in GitHub Desktop.
w02d02_homework_solutions - Supply - CSS file
/***********************************
For testing only
************************************/
/** {
border: 1px solid gold;
}*/
/***********************************
General
************************************/
#container{
width: 96%;
margin: auto;
}
/***********************************
Sidebar
************************************/
#sidebar {
margin-top: 300px;
max-width:14%;
height: 100%;
display: inline-block;
vertical-align: middle;
}
#sidebar img {
max-width: 23%;
opacity: .30;
}
/***********************************
Content
************************************/
#content{
max-width:79%;
height: auto;
display: inline-block;
}
#content div{
display: inline-block;
}
#row3 {
margin-bottom: 2em;
}
div .one {
max-width: 100%;
}
div .two {
max-width: 49%;
display: inline-block;
}
div .three {
width: 32%;
display: inline-block;
float: left;
}
div .three:first-child{
margin-right: .8em;
}
div .right {
float: right;
}
/***********************************
Images
************************************/
img {
max-width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment