sportsbet-mobile
Version:
Sportsbet mobile
20 lines (18 loc) • 655 B
text/less
.border-radius(@radius) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
.horizontal-gradient(@color1, @color2) {
background: @color1;
background: -moz-linear-gradient(left, @color1 0%, @color2 50%, @color1 100%);
background: -webkit-linear-gradient(left, @color1 0%, @color2 50%, @color1 100%);
background: linear-gradient(to right, @color1 0%, @color2 50%, @color1 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@color1, endColorstr=@color1, GradientType=1);
}
.text-overflow() {
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}