|
Part of the problem here is:
as pages get added to the site i find myself adding more styles to the main
stylesheet
so, the approach that I have been trying to implement is:
I have 1 main stylesheet (style.css) which contains all
sitewide styles--like common text styles, html redefined
and basic layout.
Deeper in the site you get to pages which are different in design
and utilize a different layout, different elements etc. For those layouts
I have specific stylesheets that are only accessed by those pages and which
are imported after style.css(and possibly overwrite some of it's rules)
|