@qooxdoo/framework
Version:
The JS Framework for Coders
57 lines (46 loc) • 1.27 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Sebastian Werner (wpbasti)
* Andreas Ecker (ecker)
************************************************************************* */
/**
* The classic qooxdoo font theme.
*/
qx.Theme.define("qx.theme.classic.Font",
{
fonts :
{
"default" :
{
size : 11,
lineHeight : 1.4,
family : [ "Lucida Grande", "Tahoma", "Verdana", "Bitstream Vera Sans", "Liberation Sans" ]
},
"bold" :
{
size : 11,
lineHeight : 1.4,
family : [ "Lucida Grande", "Tahoma", "Verdana", "Bitstream Vera Sans", "Liberation Sans" ],
bold : true
},
"small" :
{
size : 10,
lineHeight : 1.4,
family : [ "Lucida Grande", "Tahoma", "Verdana", "Bitstream Vera Sans", "Liberation Sans" ]
},
"monospace" :
{
size : 11,
lineHeight : 1.4,
family : [ "DejaVu Sans Mono", "Courier New", "monospace" ]
}
}
});