Skip to content

Instantly share code, notes, and snippets.

@argyleink
Created February 20, 2013 03:11
Show Gist options
  • Save argyleink/4992491 to your computer and use it in GitHub Desktop.
Save argyleink/4992491 to your computer and use it in GitHub Desktop.
Layouts - 3 flexbox
/**
* Layouts - 3 flexbox
*/
body {
color:white;
margin:0;
}
.flex {
display:flex;
}
.fluid {
flex:1;
}
.double {
flex:2;
}
article {
overflow:hidden;
}
section:nth-child(1) {
background:red;
}
section:nth-child(2) {
background:blue;
}
section:nth-child(3) {
background:green;
}
.inner-shadow {
box-shadow:inset 0 0 35px black;
}
.column {
padding:10px 25px;
box-sizing:border-box;
}
<article class="flex">
<section class="column fluid inner-shadow">
For sure ipsizzle hizzle sit amizzle, consectetuer adipiscing . Nullam sapien velizzle, i'm in the shizzle nizzle, bling bling crazy, gravida vel, bling bling. Pellentesque nizzle tortizzle. Nizzle yo mamma.
</section>
<section class="column fluid-double inner-shadow">
For sure ipsizzle hizzle sit amizzle, consectetuer adipiscing . Nullam sapien velizzle, i'm in the shizzle nizzle, bling bling crazy, gravida vel, bling bling. Pellentesque nizzle tortizzle. Nizzle yo mamma.
</section>
<section class="column fluid inner-shadow">
For sure ipsizzle hizzle sit amizzle, consectetuer adipiscing . Nullam sapien velizzle, i'm in the shizzle nizzle, bling bling crazy, gravida vel, bling bling. Pellentesque nizzle tortizzle. Nizzle yo mamma.
</section>
</article>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment