Skip to content

Instantly share code, notes, and snippets.

View verekia's full-sized avatar

Verekia verekia

View GitHub Profile
#shape1{
-webkit-border-radius:9999px;
-moz-border-radius:9999px;
border-radius:9999px;
}
.Round{
-webkit-border-radius:9999px;
-moz-border-radius:9999px;
border-radius:9999px;
}
#shape1{
.Round;
}
@defaultRadius:30px;
.RoundedShape(@radius:@defaultRadius){
-webkit-border-radius:@radius;
-moz-border-radius:@radius;
border-radius:@radius;
}
.Round{
.RoundedShape(9999px);
}
.RoundedSquare(@radius:@defaultRadius){
.RoundedShape(@radius);
}
#shape1{
.Round;
}
#shape2{
.RoundedSquare;
}
#shape3{
.RoundedSquare(60px)
}
@defaultThemeColor:@lightBlue;
@borderColor:@defaultThemeColor - #222;
#header h1{
}
#main h1{
}
#header{
/* #header styles */
h1{
/* #header h1 styles */
}
}
.shape{
&:hover{
background:@lightRed;
}
}