Created
July 22, 2014 11:12
-
-
Save gabrielnau/f4bc55551874653a37b9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<div class="topbar">A top bar</div> | |
<div class="content"> | |
Content ... | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$topbar-height: 40px; | |
.topbar { | |
position: absolute; | |
top: 0; | |
height: $topbar-height; | |
width: 100%; | |
background-color: lightgrey; | |
text-align: center; | |
} | |
.content { | |
position: absolute; | |
top: $topbar-height; | |
width: 100%; | |
bottom: 0; | |
overflow: scroll; | |
text-align: center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.topbar { | |
position: absolute; | |
top: 0; | |
height: 40px; | |
width: 100%; | |
background-color: lightgrey; | |
text-align: center; | |
} | |
.content { | |
position: absolute; | |
top: 40px; | |
width: 100%; | |
bottom: 0; | |
overflow: scroll; | |
text-align: center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<div class="topbar">A top bar</div> | |
<div class="content"> | |
Content ... | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment