Skip to content

Instantly share code, notes, and snippets.

@caycefischer
Created March 12, 2012 04:53
Show Gist options
  • Save caycefischer/2019888 to your computer and use it in GitHub Desktop.
Save caycefischer/2019888 to your computer and use it in GitHub Desktop.
Light Simple Grid
/* Light Simple Grid */
body {
font-family: sans-serif;
font-size: 14px;
background-color: #dedede;
}
.island {
box-sizing: border-box;
display: inline-block;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-webkit-transition: all 0.11s ease-out;
}
.container {
width: 800px;
margin: 0 auto;
padding: 2% 0;
display: block;
background-color: #dedede;
font-size: 0px; /*remove inline-block whitespace glitch */
/*border: 1px solid #ccc;*/
}
.masthead {
display: block;
margin: 2% 4% 4% 4%;
border-bottom: 2px solid #999;
line-height: 21px;
}
.masthead h1 {
font-size: 35px;
font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
letter-spacing: 1px;
color: #212121;
}
.item {
width: 20%;
min-height: 120px;
margin: 2% 0 2% 4%;
vertical-align: top;
font-size: 14px; /* restate to undo rule in .container */
text-transform: uppercase;
letter-spacing: 0.08em;
word-wrap: break-word;
text-align: center;
line-height: 120px;
color: #444;
background-color: #fdfdfd;
border: 1px solid #fff;
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.18);
position: relative;
}
.item:hover {
transform: scale(1.12);
border: 1px solid #777;
}
.notification {
/* set the dimensions */
display: block;
height: 2em;
width: 2em;
/* position it in the context of .item */
position: absolute;
top: -1em;
right: 2em;
/* make it a circle */
border-radius: 1em;
/* misc */
background-color:skyblue;
line-height: 2em;
letter-spacing: normal;
font-weight: bold;
}
a:link, a:visited { color: #212121; text-decoration: none; }
a:hover, a:active { color: #c23333; }
<div class="container island">
<header class="island masthead">
<h1><a href="#">⇥ Portfolio</a></h1>
</header>
<div class="island item"><span class="notification">3</span>One</div>
<div class="island item">Two</div>
<div class="island item">Three</div>
<div class="island item">Four</div>
<div class="island item">Five</div>
<div class="island item">Six</div>
<div class="island item">Seven</div>
<div class="island item">Eight</div>
<div class="island item">Nine</div>
<div class="island item">Ten</div>
<div class="island item">Eleven</div>
<div class="island item">Twelve</div>
<div class="island item"></div>
<div class="island item"></div>
<div class="island item"></div>
<div class="island item"></div>
<div class="island item"></div>
<div class="island item"></div>
<div class="island item"></div>
<div class="island item"></div>
</div>
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment