直接写在最外层的同学,那样你的代码就会丑···本来按照bem规范的要求你可以一级嵌套一级,结果css表又变成了一大坨乱的,这样之后会不好维护,尤其是在项目大的时候经常需要维护上百份样式表
2017-11-18
$theme-color: ( default: ( bgcolor:#fff, text-color:#444, link-color:#39f ), primary: ( bgcolor:#000, text-color:#fff, link-color:#93f ), negative: ( bgcolor: #f36, text-color: #fefefe, link-color: #d4e ) );
.btn-default {
color: map-get( map-get($theme-color,default),bgcolor);
}
.btn-default {
color: map-get( map-get($theme-color,default),bgcolor);
}
2017-10-31
@mixin swatchesColor($color){
@for $i from 1 through 21{
li:nth-child(#{$i}){
$bgc:if($i<=11,lighten($color,55-$i*5), darken($color,$i*5-55 ));
background-color:$bgc;
&:hover:before{content:"#{$bgc}";color:lighten($bgc,40);
font-family:verdana;font-size:8px;padding:2px;
}}}}
@for $i from 1 through 21{
li:nth-child(#{$i}){
$bgc:if($i<=11,lighten($color,55-$i*5), darken($color,$i*5-55 ));
background-color:$bgc;
&:hover:before{content:"#{$bgc}";color:lighten($bgc,40);
font-family:verdana;font-size:8px;padding:2px;
}}}}
2017-10-19
目前点赞最多的这个,我试了,运算可以进行, Sass version:3.5.1
》》round(3px/2em)
2px/em
》》round(3px/2em)
2px/em
2017-09-26
其实每个列表中值的个数可以不等
>>zip(1px 2px ,solid dashed dotted,green blue red)
生成(1px solid green) (2px dashed blue)
新的多维列表数目取决于原始值最少的那个列表。
但是为了安全起见,还是应该使每个单一列表值的个数相同。
>>zip(1px 2px ,solid dashed dotted,green blue red)
生成(1px solid green) (2px dashed blue)
新的多维列表数目取决于原始值最少的那个列表。
但是为了安全起见,还是应该使每个单一列表值的个数相同。
2017-09-25