Skip to content

Instantly share code, notes, and snippets.

@peavers
Created October 27, 2014 07:12
Show Gist options
  • Save peavers/7ecd31ef81171315217d to your computer and use it in GitHub Desktop.
Save peavers/7ecd31ef81171315217d to your computer and use it in GitHub Desktop.
/*
* Create a new ID for each element on the page such as news, popular, data etc
*/
#headline {
width: 65%;
float: left;
}
#pop {
width: 33%;
float: left;
}
#news {
width: 33%;
float: left;
}
#map {
width: 33%;
float: left;
}
#data {
width: 33%;
float: left;
}
.col {
width:50%;
float:left
}
.example {
display: inline-block;
padding:1rem;
border:1px solid #D6D6D6;
}
/*
* Use this class for each title so they all look the same
*/
.title {
margin:1rem 0 0;
border:transparent;
border-top-right-radius:1rem;
background:#7d7db0;
color:#fff
}
.arrow {
background:#001157;
padding:0 1rem
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment