@mixin list { display: inline-block; *display: inline; *zoom: 1; vertical-align: top; } @mixin bura($size) { padding-left: $size; text-indent: -$size; } @mixin gradient($from,$to) { $type: 'linear'; background: $to; background: -moz-#{$type}-gradient(top,$from 0,$to 100%); background: -webkit-gradient(#{$type},left top, left bottom,color-stop(0%,$from),color-stop(100%,$to)); background: -webkit-#{$type}-gradient(top,$from 0,$to 100%); background: -o-#{$type}-gradient(top,$from 0,$to 100%); background: -ms-#{$type}-gradient(top,$from 0,$to 100%); background: #{$type}-gradient(top,$from 0,$to 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}',endColorstr='#{$to}',GradientType=0); } @mixin gradient-h($from,$to) { $type: 'linear'; background: $to; background: -moz-#{$type}-gradient(left$from 0,$to 100%); background: -webkit-gradient(#{$type},left top,right bottom,color-stop(0%,$from),color-stop(100%,$to)); background: -webkit-#{$type}-gradient(left,$from 0,$to 100%); background: -o-#{$type}-gradient(left,$from 0,$to 100%); background: -ms-#{$type}-gradient(left,$from 0,$to 100%); background: #{$type}-gradient(to right,$from 0,$to 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}',endColorstr='#{$to}',GradientType=0); } @mixin font-size($size) { font-size: ($size * 10) + px/*\9*/; /*font-size: $size + rem;*/ } @mixin rgba($r,$g,$b,$a) { background: rgb($r,$g,$b)\9; background: rgba($r,$g,$b,$a); } @mixin pankuzu() { overflow: hidden; @include font-size(1.2); li { float: left; a { padding-right: 12px; background: url(/common/images/dot_pankuzu.png) no-repeat right 6px; margin-right: 9px; color: #047170; } } }