@qooxdoo/framework
Version:
The JS Framework for Coders
53 lines (41 loc) • 1.02 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2011 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:
* Martin Wittemann (martinwittemann)
************************************************************************* */
/**
* The simple qooxdoo font theme.
*
* @usefont(qx.theme.monospace)
*/
qx.Theme.define("qx.theme.simple.Font", {
fonts: {
default: {
size: 13,
family: ["arial", "sans-serif"]
},
bold: {
size: 13,
family: ["arial", "sans-serif"],
bold: true
},
headline: {
size: 24,
family: ["sans-serif", "arial"]
},
small: {
size: 11,
family: ["arial", "sans-serif"]
},
monospace: {
size: 11,
fontName: "qx.theme.monospace"
}
}
});