View SassMeister-input.scss
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.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.cat { | |
color: gold; | |
// must be both a cat and black in the same class=".." | |
&.black { |
View SassMeister-input.scss
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.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$breakpoints: ( | |
"(min-width: 400px)" "small", | |
"(min-width: 767px)" "med", | |
"(min-width: 1200px)" "large" | |
); |
View SassMeister-input-HTML.html
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
<body> | |
<div class="main"> | |
<div class="one">One</div> | |
<div class="two">Two</div> | |
<div class="three"> | |
<div class="a">Three A</div> | |
<div class="b">Three B</div> | |
<div class="c">Three C</div> | |
</div> | |
</div> |
View SassMeister-input-HTML.html
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
<body> | |
<div class="main">Main Section</div> | |
<div class="first">First Section</div> | |
<div class="second">Second Section</div> | |
</body> |
View SassMeister-input-HTML.html
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
<body> | |
<div class="main"> | |
<div class="one">One</div> | |
<div class="two">Two</div> | |
<div class="three"> | |
<div class="a">Three A</div> | |
<div class="b">Three B</div> | |
<div class="c">Three C</div> | |
</div> | |
</div> |
View 0_reuse_code.js
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
View SassMeister-input-HTML.html
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
<ul> | |
<li class="color-sample"></li> | |
<li class="color-sample"></li> | |
<li class="color-sample"></li> | |
<li class="color-sample"></li> | |
<li class="color-sample"></li> | |
</ul> |
View SassMeister-input-HTML.html
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
Arglist flexibility test | |
URL: | |
http://sassmeister.com/gist/64143f5242ee7a286d09 | |
View SassMeister-input.scss
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) | |
// ---- | |
$full-black: #f00; | |
$dark-black: #f00; | |
$light-black: #000; | |
$min-black: #f00; | |
$full-white: #f00; |
View SassMeister-input.scss
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) | |
// ---- | |
.block { | |
&:hover, | |
&__element { | |
color: red; | |
} |
OlderNewer