Skip to content

Instantly share code, notes, and snippets.

@ratracegrad
Created September 4, 2017 20:43
Show Gist options
  • Save ratracegrad/3466c0e40b61a80a7ba0a05543128509 to your computer and use it in GitHub Desktop.
Save ratracegrad/3466c0e40b61a80a7ba0a05543128509 to your computer and use it in GitHub Desktop.
Responsive website CSS code
.flexContainer {
display: flex;
}
.flexItem {
flex: 1;
}
.flexColumn {
flex-direction: column;
}
.fullHeight {
height: 100vh;
}
.whiteBackground {
background: white;
}
.blueBackground {
background: lightskyblue;
}
.main{
order: 2;
padding: 20px;
border-left: 1px solid #777777;
border-right: 1px solid #777777;
}
.sidebar {
width: 20%;
background: white;
padding: 20px;
}
.sidebarLeft{
order: 1;
}
.sidebarRight{
order: 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment