Skip to content

Instantly share code, notes, and snippets.

View kilmc's full-sized avatar

Kilian McMahon kilmc

View GitHub Profile
@kilmc
kilmc / button-padding-mixin.scss
Last active December 30, 2015 21:38
Button Padding Mixin
@mixin button-padding($amount, $denominator: 2) {
padding: $amount/$denominator $amount;
}
@kilmc
kilmc / border-sandwich-mixin.scss
Last active April 9, 2018 16:49
Border Sandwich Mixin
@mixin border-sandwich($border, $just-filling: false) {
@if ($just-filling) {
&:not(:first-of-type) {
border-top: $border;
}
} @else {
@kilmc
kilmc / color-test.scss
Created July 23, 2013 12:58
Colour Test Mixin
@mixin colour-test($color: #ff0099, $index: 1, $offset: 0) {
.box-#{$index} {
background-color: $color;
display: block;
height: 150px;
width: 150px;
top: 50px;
left: 400px + ($offset*180px);
position: fixed;
z-index: 10000;