$menu_color: #F7F7FF; $link_color: hsl(213, 100%, 50%); $link_hover_color: lighten($link_color, 25%); $link_dark_color: darken($link_color, 25%); $highlight_color: lighten(complement($link_color), 35%); $h1_size: 2em; $h2_size: 1.5em; $h3_size: 1.16667em; $h1_padding: 1.25em 0; $h2_padding: 1.45833em 0; $h3_padding: 1.51785em 0; $baseline: 1em; $basefont: 100%; @mixin border-radius($val) { -moz-border-radius: $val; -webkit-border-radius: $val; -ms-border-radius: $val; -o-border-radius: $val; border-radius: $val; } @mixin box-shadow($val) { -moz-box-shadow: $val; -webkit-box-shadow: $val; -ms-box-shadow: $val; -o-box-shadow: $val; box-shadow: $val; } @mixin text-shadow($val) { -moz-text-shadow: $val; -webkit-text-shadow: $val; -ms-text-shadow: $val; -o-text-shadow: $val; text-shadow: $val; } @mixin transparency($value) { opacity: $value; -ms-filter: unqoute("progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$value * 100})"); filter: unquote("alpha(opacity=#{$value * 100})"); zoom: 1; } @mixin inline-block { display: -moz-inline-box; -moz-box-orient: vertical; display: inline-block; vertical-align: baseline; zoom: 1; *display: inline; *vertical-align: auto; } @mixin vertical-gradient ($startColor: #555, $endColor: #333) { background-color: $endColor; background-repeat: repeat-x; background-image: -moz-linear-gradient(top, $startColor, $endColor); // FF 3.6+ background-image: -ms-linear-gradient(top, $startColor, $endColor); // IE10 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $startColor), color-stop(100%, $endColor)); // Safari 4+, Chrome 2+ background-image: -webkit-linear-gradient(top, $startColor, $endColor); // Safari 5.1+, Chrome 10+ background-image: -o-linear-gradient(top, $startColor, $endColor); // Opera 11.10 background-image: linear-gradient(top, $startColor, $endColor); // The standard filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=0); // IE9 and down } @mixin gradientBar($primaryColor, $secondaryColor) { @include vertical-gradient($primaryColor, $secondaryColor); text-shadow: 0 -1px 0 rgba(0,0,0,0.25); border-color: $secondaryColor $secondaryColor darken($secondaryColor, 15%); border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) opacify(rgba(0,0,0,0.1), 0.15); } @mixin transition($transition) { -webkit-transition: $transition; -moz-transition: $transition; -ms-transition: $transition; -o-transition: $transition; transition: $transition; } @mixin vertical-three-colors-gradient($startColor: #00b3ee, $midColor: #7a43b6, $colorStop: 50%, $endColor: #c3325f) { background-color: $endColor; background-repeat: no-repeat; background-image: -webkit-gradient(linear, 0 0, 0 100%, from($startColor), color-stop($colorStop, $midColor), to($endColor)); background-image: -webkit-linear-gradient($startColor, $midColor $colorStop, $endColor); background-image: -moz-linear-gradient($startColor, $midColor $colorStop, $endColor); background-image: -ms-linear-gradient($startColor, $midColor $colorStop, $endColor); background-image: -o-linear-gradient($startColor, $midColor $colorStop, $endColor); background-image: linear-gradient($startColor, $midColor $colorStop, $endColor); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=0); // IE9 and down, gets no color-stop at all the proper fallback } // Reset filters for IE @mixin reset-filter() { filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }