react-native-ocss
Version:
#### 干嘛
38 lines (35 loc) • 624 B
CSS
url("global.css")
url("common.css")
.dialog, .pop {
color: $color;
font-size: $size;
}
.show {
font-color: $color;
}
$xxxx=12px
.warning {
font-size: $xxxx;
}
$nima=7deg
.movie {
// nihao
/**/
transform:rotate($nima, 9deg);
-ms-transform:rotate(7deg, 9deg); /* IE 9 */
-moz-transform:rotate(7deg, 9deg); /* Firefox */
}
-mixin test $size: 12, $color:blue {
color: $color;
font-size: $size;
}
-mixin test2 $size: 12, $color:blue {
.dialog2 {
color: $color;
font-size: $size;
}
}
.mixin {
$size blue
}