I want all fonts to be slightly bigger than default. I believe that size is the same for all skins, thus 11px. What I now did, is the following:
* Copy the /isomorphic/skins/Enterprise directory to another directory.
* In skin_styles.css I copied all styles to the end of the file (so everything in it is there twice). This way, I can always copy (overwrite) the original contents at the beginning of the file.
* Replaced all CSS rules "font-size: 11px;" with "font-size: 12px;".
* Removed all other CSS rules and if that left an empty body, removed the body as well.
Although, this works, I wonder if there isn't an easier approach, because if I need to change the 12px to 13px (or something else), I need to replace them all. Of course I can use "replace all" but only for the latter part of the file.
* Copy the /isomorphic/skins/Enterprise directory to another directory.
* In skin_styles.css I copied all styles to the end of the file (so everything in it is there twice). This way, I can always copy (overwrite) the original contents at the beginning of the file.
* Replaced all CSS rules "font-size: 11px;" with "font-size: 12px;".
* Removed all other CSS rules and if that left an empty body, removed the body as well.
Although, this works, I wonder if there isn't an easier approach, because if I need to change the 12px to 13px (or something else), I need to replace them all. Of course I can use "replace all" but only for the latter part of the file.
Comment