Files
screen-xghy/src/assets/css/mixin.styl
2026-03-17 16:21:31 +08:00

48 lines
873 B
Stylus

$red = #ed4754
$green = #67c23a
$yellow = #f2d648
$orange = #f17d3a
$blue = #6798ef
$gray = #c9c9c9
$fc1 = #323232
.green
background-color #11ff0d
.yellow
background-color #fdfd0f
.gray
background-color #bfbfbf
.red
background-color #ff1016
//
_wh(w, h)
width: w
height: h
//
_font(size,height,color=$fc1,weight=normal,align=left)
font-size: size
line-height: height
color: color
font-weight: weight
text-align: align
//flex
_fj(x=space-between,y=center)
display: flex
justify-content: x
align-items: y
//
_bis(url,w,h=auto,x=center,y=center)
background-position: x y
background-size: w h
background-image: url(url)
background-repeat: no-repeat
//
_ct()
position: absolute
top: 50%
transform: translateY(-50%)