Added some assets for png4web

This commit is contained in:
2025-06-26 19:03:41 +02:00
parent 2aec8dc567
commit 2af9518716
20 changed files with 741 additions and 0 deletions
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,21 @@
/*
* 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 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.
*/
@font-face {
font-family: 'pgn4web ChessSansUsual';
src: url('ChessSansUsual.eot');
src: url('ChessSansUsual.eot?#iefix') format('embedded-opentype'), url('ChessSansUsual.woff') format('woff'), url('ChessSansUsual.ttf') format('truetype'), url('ChessSansUsual.svg#ChessSansUsual') format('svg');
}
@@ -0,0 +1,26 @@
/*
* pgn4web javascript chessboard
* copyright (C) 2009-2012 Paolo Casaschi
* see README file and http://pgn4web.casaschi.net
* for credits, license and more details
*
*
* The standard LiberationSans font is supplied to allow for consistent display of
* header and text with the moves, when chess moves are displayed using a supplied
* figurine font.
*/
@font-face {
font-family: 'pgn4web Liberation Sans';
src: url('LiberationSans-Regular.eot');
src: url('LiberationSans-Regular.eot?#iefix') format('embedded-opentype'), url('LiberationSans-Regular.woff') format('woff'), url('LiberationSans-Regular.ttf') format('truetype'), url('LiberationSans-Regular.svg#LiberationSans') format('svg');
font-weight: normal;
}
@font-face {
font-family: 'pgn4web Liberation Sans';
src: url('LiberationSans-Bold.eot');
src: url('LiberationSans-Bold.eot?#iefix') format('embedded-opentype'), url('LiberationSans-Bold.woff') format('woff'), url('LiberationSans-Bold.ttf') format('truetype'), url('LiberationSans-Bold.svg#LiberationSans-Bold') format('svg');
font-weight: bold;
}