From 8856c415d16ae558609b615873826816c6718f42 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 14 Nov 2015 14:25:23 -0500 Subject: redesign --- _sass/tiny/_mixins.scss | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 _sass/tiny/_mixins.scss (limited to '_sass/tiny/_mixins.scss') diff --git a/_sass/tiny/_mixins.scss b/_sass/tiny/_mixins.scss deleted file mode 100644 index 3afa7e9..0000000 --- a/_sass/tiny/_mixins.scss +++ /dev/null @@ -1,36 +0,0 @@ -// Clearfix -// -// Clears floats via mixin (avoid using as a class). - -@mixin clearfix { - &:before { - display: table; - content: ""; - } - - &:after { - display: table; - clear: both; - content: ""; - } -} - -// Text hiding for image based text replacement. -// Higher performance than -9999px because it only renders -// the size of the actual text, not a full 9999px box. - -@mixin hide-text() { - overflow: hidden; - text-indent: 100%; - white-space: nowrap; -} - -@mixin gradient($start: #fafafa, $end: #eaeaea) { - background-color: $end; - // FF 3.6+ - background-image: -moz-linear-gradient($start, $end); - // Safari 5.1+, Chrome 10+ - background-image: -webkit-linear-gradient($start, $end); - background-image: linear-gradient($start, $end); - background-repeat: repeat-x; -} -- cgit v1.2.3