租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

47 lines
834 B

.se {
@for $i from 0 through 500 {
@if $i % 5 == 0 or $i < 20 {
&-p {
&-#{$i} {
padding: $i + rpx;
}
&x-#{$i} {
padding-left: $i + rpx;
padding-right: $i + rpx;
}
&y-#{$i} {
padding-top: $i + rpx;
padding-bottom: $i + rpx;
}
}
&-m {
&-#{$i} {
margin: $i + rpx;
}
&x-#{$i} {
margin-left: $i + rpx;
margin-right: $i + rpx;
}
&y-#{$i} {
margin-top: $i + rpx;
margin-bottom: $i + rpx;
}
}
@each $s, $l in t top, r right, b bottom, l left {
&-p#{$s}-#{$i} {
padding-#{$l}: $i + rpx;
}
&-m#{$s}-#{$i} {
margin-#{$l}: $i + rpx;
}
}
}
}
}