29 lines
1000 B
CSS
29 lines
1000 B
CSS
/*
|
|
* pgn4web javascript chessboard
|
|
* copyright (C) 2009-2012 Paolo Casaschi
|
|
* see README file and http://pgn4web.casaschi.net
|
|
* for credits, license and more details
|
|
*
|
|
*
|
|
* allows using the following chess figurine font-family setting for the chess moves:
|
|
*
|
|
* 'pgn4web ChessSansAlpha'
|
|
* 'pgn4web ChessSansMerida'
|
|
* 'pgn4web ChessSansPiratf'
|
|
* 'pgn4web ChessSansUscf'
|
|
* 'pgn4web ChessSansUsual'
|
|
*
|
|
* make sure you include this CSS file into your HTML file or your CSS file, then set
|
|
* the font-family for the .move class to the chess font of your choice.
|
|
* The standard LiberationSans font is also supplied to allow for consistent display
|
|
* of header and text with the moves.
|
|
*/
|
|
|
|
@import url("pgn4web-font-ChessSansAlpha.css");
|
|
@import url("pgn4web-font-ChessSansMerida.css");
|
|
@import url("pgn4web-font-ChessSansPiratf.css");
|
|
@import url("pgn4web-font-ChessSansUscf.css");
|
|
@import url("pgn4web-font-ChessSansUsual.css");
|
|
@import url("pgn4web-font-LiberationSans.css");
|
|
|