forked from AuroraMiddleware/gtk
5993875d38
Setting the font: shorthand to something like smaller is not in line with the css spec. Just set the font-size: property for this. Also fix the other font: shorthand to specify size and family according to the css spec.
8 lines
68 B
CSS
8 lines
68 B
CSS
box {
|
|
font: 10px "Comic Sans";
|
|
}
|
|
|
|
label {
|
|
font-size: smaller;
|
|
}
|