0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

If font 'Chess Merida Unicode' is installed, then use it in FEN mode.

This commit is contained in:
Anti 2014-04-18 10:43:50 +02:00
parent d61c6022be
commit ffbe584f51

View File

@ -3,8 +3,9 @@
}
.chess_board td {
background:-webkit-gradient(linear,0 0, 0 100%, from(#fff), to(#eee));
-webkit-box-shadow:inset 0 0 0 1px #fff;
background: -webkit-gradient(linear,0 0, 0 100%, from(#e4dff), to(#e4dff));
-webkit-box-shadow:inset 0 0 0 0px #000;
font-family: "Chess Merida Unicode", sans-serif;
height:30px;
width:30px;
font-size:22px;
@ -14,7 +15,7 @@
.chess_board tr:nth-child(odd) td:nth-child(even),
.chess_board tr:nth-child(even) td:nth-child(odd) {
background:-webkit-gradient(linear,0 0, 0 100%, from(#ccc), to(#eee));
background:-webkit-gradient(linear,0 0, 0 100%, from(#b1ccff), to(#b1ccff));
-webkit-box-shadow:inset 0 0 8px rgba(0,0,0,.4);
}