Skip to content

Instantly share code, notes, and snippets.

@horacioh
Created October 21, 2013 21:38
Show Gist options
  • Save horacioh/7091469 to your computer and use it in GitHub Desktop.
Save horacioh/7091469 to your computer and use it in GitHub Desktop.
A Pen by Horacio Herrera.
.app-container
%section.app-header
App header
%section.app-main-content
%section.app-content-wrapper
App content Wrapper
%aside.app-sidebar
App Sidebar
@import "compass";
* { margin: 0; padding: 0; }
html,
body
{
width: 100%;
height: 100%;
}
.app-container
{
background: gray;
display: flex;
flex-flow: column;
height: 100%;
}
.app-header
{
max-height: 50px;
height: 50px;
background: green;
flex: 1 0 0;
}
.app-main-content
{
flex: 3 0 0;
display: flex;
}
.app-content-wrapper
{
flex: 3 0 0;
background: #ccc;
margin: 24px;
}
.app-sidebar
{
//flex: 1 0 0;
width: 256px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment