vendor/toolkit/metro-ui/cards.less in metro-ui-rails-0.15.8.13 vs vendor/toolkit/metro-ui/cards.less in metro-ui-rails-0.15.8.14
- old
+ new
@@ -1,9 +1,9 @@
/*
* Metro UI CSS
- * Copyright 2012 Sergey Pimenov
- * Licensed under the MIT License
+ * (c) 2012-2013 by Sergey Pimenov
+ * Licensed under the MIT License and Commercial
*
* Cards.less
*
*/
@@ -38,21 +38,22 @@
right: 5px;
bottom: 30px;
}
.small-suit:after {
top: 5px;
- left: 10px;
+ left: 13px;
position: absolute;
}
.small-suit:before {
- top: 28px;
+ top: 22px;
left: 10px;
position: absolute;
}
.suit:after {
position: relative;
+ bottom: 10px;
}
}
.red { color: red;}
.black { color: black; }
@@ -85,29 +86,34 @@
background-image: linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
}
// Масти
// Пики
+@spades: "\e009";
+@clubs: "\e00a";
+@diamonds: "\e00b";
+@hearts: "\e07f";
+
.card.spades {
.small-suit:after { .black(); }
- .small-suit:before { content: "\2660"; .black(); }
- .suit:after { content: "\2660"; .black(); }
+ .small-suit:before {font-family: iconFont; content: @spades; .black(); }
+ .suit:after {font-size: 40pt; font-family: iconFont; content: @spades; .black(); }
}
// Трефы
.card.clubs {
.small-suit:after { .black(); }
- .small-suit:before { content: "\2663"; .black(); }
- .suit:after { content: "\2663"; .black(); }
+ .small-suit:before {font-family: iconFont; content: @clubs; .black(); }
+ .suit:after {font-size: 40pt; font-family: iconFont; content: @clubs; .black(); }
}
// Бубны
.card.diamonds {
.small-suit:after { .red(); }
- .small-suit:before { content: "\2666"; .red(); }
- .suit:after { content: "\2666"; .red();}
+ .small-suit:before {font-family: iconFont; content: @diamonds; .red(); }
+ .suit:after {font-size: 40pt; font-family: iconFont; content: @diamonds; .red();}
}
// Червы
.card.hearts {
.small-suit:after { .red(); }
- .small-suit:before { content: "\2665"; .red(); }
- .suit:after { content: "\2665"; .red(); }
+ .small-suit:before {font-family: iconFont; content: @hearts; .red(); }
+ .suit:after {font-size: 40pt; font-family: iconFont; content: @hearts; .red(); }
}