Skip to content

Instantly share code, notes, and snippets.

View StfBauer's full-sized avatar
🏠
Working from home as everyday

Stefan Bauer StfBauer

🏠
Working from home as everyday
View GitHub Profile
@StfBauer
StfBauer / Boxes.html
Last active August 29, 2015 14:19
Generated by SassMeister.com.
<div class="box"></div>
@mixin transition($transition-property, $transition-time, $method, $delay: 0s) {
-webkit-transition: $transition-property $transition-time $method $delay;
-moz-transition: $transition-property $transition-time $method $delay;
-ms-transition: $transition-property $transition-time $method $delay;
-o-transition: $transition-property $transition-time $method $delay;
transition: $transition-property $transition-time $method $delay;
}
$c-red: red;
$c-blue: blue;
@StfBauer
StfBauer / SassMeister-input-HTML.html
Created April 17, 2015 13:05
Generated by SassMeister.com.
<div class="box">
Hello world
</div>