Created
December 11, 2014 11:49
-
-
Save d8ta/832d7439a150b7687e15 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$color-red: #ff0000; | |
$has-color: false; | |
$color-content: 'color'; | |
$colorList: #ff0000 #fff000 #ffff00; | |
$colorList2: #ff0000 #fff000 #ffff00; | |
$fontSizeMap: (h1: 12px, h2: 14px); | |
$width: 100px; | |
.container { | |
.content { | |
color: $color-red; | |
width: floor($width / 960px*100%); | |
@each $header, $size in $fontSizeMap { | |
#{$header}: $size; | |
} | |
/* row comments */ | |
@if has-color { | |
// .. code .. comment | |
} | |
a { //a:hover | |
&:hover {//& heisst das der übergeordnete selector hier eingefügt wird { | |
color: blue; | |
} | |
.ie9 & { | |
color: #ffffff; | |
} | |
.touch & { | |
color: #ffffff; | |
} | |
} | |
} | |
} |
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
.container .content { | |
color: #ff0000; | |
width: 10%; | |
h1: 12px; | |
h2: 14px; | |
/* row comments */ | |
} | |
.container .content a:hover { | |
color: blue; | |
} | |
.ie9 .container .content a { | |
color: #ffffff; | |
} | |
.touch .container .content a { | |
color: #ffffff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment