Skip to content

Instantly share code, notes, and snippets.

@regepan
Last active August 31, 2016 12:58
Show Gist options
  • Save regepan/0f1475d6f0d4d8a81a3a93a5741921c8 to your computer and use it in GitHub Desktop.
Save regepan/0f1475d6f0d4d8a81a3a93a5741921c8 to your computer and use it in GitHub Desktop.
<div class="container">
<div class="main">
main
</div>
<div class="sidebar">
sidebar
</div>
</div>
//----------------------------------------------
.main {
@media (min-width: $screen-sm-min) {
width: 75.85%;
float: left;
}
}
//----------------------------------------------
.sidebar {
@media (min-width: $screen-sm-min) {
width: 22.25%;
float: right;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment