1 2 3 4 5 6 7 8 9 10
@mixin fonttextStyle($size){ font-size: $size; font-weight:bold; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } $fontBlue: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(0,202,254, 1)), to(rgba(39,114,244, 1))); $fontOrange: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(255,186,0, 1)), to(rgba(255,129,0, 1)));
11 12
$colorCom:#f00;