From 6b26bca2593f258cadbca656924b4e6b5c40a7c7 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 25 Sep 2011 00:05:54 -0700 Subject: meh do stuff --- logo-style.scss.php | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 logo-style.scss.php (limited to 'logo-style.scss.php') diff --git a/logo-style.scss.php b/logo-style.scss.php new file mode 100644 index 0000000..1c9c062 --- /dev/null +++ b/logo-style.scss.php @@ -0,0 +1,49 @@ +.02, + 'xdrop'=>.03, + 'ydrop'=>.02, + 'steps'=>10, + 'color'=>'#0000FF')); + +$white = css_shadow::draw_border(array('left' =>.04, 'top' =>.04, + 'right'=>.03, 'bottom'=>.03, + 'xdrop'=>.05, + 'ydrop'=>.04, + 'steps'=>10, + 'color'=>'#FFFFFF')); +?> +@import 'http://fonts.googleapis.com/css?family=Anton'; + +@mixin transform($arg) { + transform: $arg; + -webkit-transform: $arg; + -khtml-transform: $arg; + -moz-transform: $arg; + -ms-transform: $arg; + -o-transform: $arg; +} + +@mixin logo { + font-family: Anton, sans-serif; + font-style: oblique; + font-variant: small-caps; + font-weight: normal; + color: #FFFF00; + @include transform(skewX(-20deg)); + .lower { + text-transform: none; + } + text-transform: uppercase; + line-height: 1em; +} +@mixin logo-white { + @include logo; + text-shadow: 0 0 #000000; +} + +@mixin logo-nowhite { + @include logo; + text-shadow: 0 0 #000000; +} -- cgit v1.2.3