Last active
August 29, 2015 14:08
-
-
Save tolja/051022813b8527a63716 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
<div id="header">Header-Div</div><div id="sidebar">Sidebar-Div</div> |
This file contains 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.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$breite: 500px; | |
#header { | |
float:left; | |
width:$breite; | |
height:50px; | |
background-color:#000; | |
color:#fff; | |
} | |
#sidebar { | |
width:$breite*0.2; | |
height:50px; | |
float:left; | |
background-color:#675; | |
color:#fff; | |
} |
This file contains 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
#header { | |
float: left; | |
width: 500px; | |
height: 50px; | |
background-color: #000; | |
color: #fff; | |
} | |
#sidebar { | |
width: 100px; | |
height: 50px; | |
float: left; | |
background-color: #675; | |
color: #fff; | |
} |
This file contains 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
<div id="header">Header-Div</div><div id="sidebar">Sidebar-Div</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment