sass十分钟入门 变量 sass中可以定义变量,方便统一修改和维护。 //sass style // $fontStack: Helvetica, sans-serif; $primaryColor: #333; body { font-family: $fontStack; color: $pr ...
分类:
编程语言 时间:
2017-11-05 17:25:02
阅读次数:
178
sass十分钟入门 变量 sass中可以定义变量,方便统一修改和维护。 //sass style // $fontStack: Helvetica, sans-serif; $primaryColor: #333; body { font-family: $fontStack; color: $pr ...
分类:
其他好文 时间:
2017-07-10 14:31:00
阅读次数:
137
Drawable[] layers = new Drawable[2]; layers[0] = new ColorDrawable(primaryColor); layers[1] = new ColorDrawable(0x7f000000); LayerDrawable layerDrawab ...
分类:
其他好文 时间:
2017-05-29 19:55:44
阅读次数:
147
sass文件名为.scss可以设置变量//sass style$fontStack:Heletica,sans-serif;$primaryColor:#333;body{ font-family:$fontStack; color:$primaryColor;}//css style //--.....
分类:
其他好文 时间:
2016-01-07 18:03:50
阅读次数:
149
变量sass中可以定义变量,方便统一修改和维护。//sass style//-----------------------------------$fontStack: Helvetica, sans-serif;$primaryColor: #333;body { font-family:...
分类:
其他好文 时间:
2015-11-16 14:02:41
阅读次数:
162
Drawable[] layers = new Drawable[2];
layers[0] = new ColorDrawable(primaryColor);
layers[1] = new ColorDrawable(0x7f000000);
LayerDrawable layerDrawable = new LayerDrawab...
分类:
其他好文 时间:
2015-07-09 19:49:41
阅读次数:
127
问题中文描述:任务描述:primary color 本应该为不透明的
今天写好values-v21 下的style之后,
#354c9b
#2878f4
@color/sky_blue
@color/deep_blue
@color/mat...
分类:
其他好文 时间:
2015-05-27 21:15:17
阅读次数:
191