mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 11:20:12 +00:00
5ab6ff6b5e
Test more of the syntax of the font: shorthand.
24 lines
263 B
CSS
24 lines
263 B
CSS
box {
|
|
font: 10px "Comic Sans";
|
|
}
|
|
|
|
#label1 {
|
|
font-size: smaller;
|
|
}
|
|
|
|
#label2 {
|
|
font: 10pt Cantarell, sans-serif;
|
|
}
|
|
|
|
#label3 {
|
|
font: bold italic 80% monospace;
|
|
}
|
|
|
|
#label4 {
|
|
font: expanded oblique xx-small serif;
|
|
}
|
|
|
|
#label5 {
|
|
font: 20mm '21st Century';
|
|
}
|