You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
10 months ago
|
/*
|
||
|
The commercial Lucida Bright fonts can be obtained from
|
||
|
http://tug.org/store/lucida/opentype.html and some Web services might
|
||
|
provide them as Web fonts. See also
|
||
|
http://www.microsoft.com/typography/fonts/family.aspx?FID=186
|
||
|
http://www.microsoft.com/typography/fonts/family.aspx?FID=217
|
||
|
|
||
|
Warning: The CSS rules below have not been tested.
|
||
|
*/
|
||
|
|
||
|
@namespace url('http://www.w3.org/1999/xhtml');
|
||
|
@namespace m url('http://www.w3.org/1998/Math/MathML');
|
||
|
|
||
|
/* Uncomment and complete the URLs if you wish to use Web fonts */
|
||
|
/*
|
||
|
@font-face {
|
||
|
font-family: Lucida Bright;
|
||
|
src: local('Lucida Bright'), url('...');
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: Lucida Bright;
|
||
|
src: local('Lucida Bright Demibold'), url('...');
|
||
|
font-weight: bolder;
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: Lucida Bright;
|
||
|
src: local('Lucida Bright Italic'), url('...');
|
||
|
font-style: italic;
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: Lucida Bright;
|
||
|
src: local('Lucida Bright Demibold Italic'), url('...');
|
||
|
font-weight: bolder;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: Lucida Bright Math;
|
||
|
src: local('Lucida Bright Math'), url('...');
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
.htmlmathparagraph, m|mtext {
|
||
|
font-family: Lucida Bright;
|
||
|
}
|
||
|
m|math {
|
||
|
font-family: Lucida Bright Math;
|
||
|
}
|
||
|
|
||
|
.oldstylenumbers {
|
||
|
font-variant-numeric: oldstyle-nums; /* Recommended syntax */
|
||
|
font-feature-settings: 'onum'; /* OpenType feature syntax */
|
||
|
-moz-font-feature-settings: 'onum'; /* Gecko <= 33 syntax */
|
||
|
-webkit-font-feature-settings: 'onum'; /* Blink syntax */
|
||
|
}
|
||
|
|
||
|
/* TODO: verify whether calligraphic letters are available in this font */
|
||
|
m|*.calligraphic {
|
||
|
}
|