Skip to content

Instantly share code, notes, and snippets.

@aaronhartland
Created June 24, 2012 19:00
Show Gist options
  • Save aaronhartland/2984487 to your computer and use it in GitHub Desktop.
Save aaronhartland/2984487 to your computer and use it in GitHub Desktop.
CSS for Structure example grid
/* This is for ths sample grid */
.example-grid {
overflow: hidden;
width: 100%;
}
#inner .column, #inner .columns {
background: #DDD;
height: 25px;
line-height: 25px;
margin-bottom: 10px;
text-align: center;
text-transform: uppercase;
color: #555;
font-size: 12px;
font-weight: bold;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
#inner .column:hover, #inner .columns:hover {
background: #ccc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment