issues
search
jefflunt
/
rpglogger
(retired) Build your own strategy guide for any RPG
6
stars
0
forks
source link
Refactor .sass files
#56
Closed
jefflunt
closed
12 years ago
jefflunt
commented
12 years ago
Treat fonts like the way you would in word processors. Have attributes such as bold, italics, size, etc. applied separately
Use CSS inheritance to get the text styles you want from combining the basic forms (bold, italics, etc.)
Change
globals.sass
(which should contain the style primitives) to
primitives.sass
Move anything that's a primitive style to
styles.sass
, and move anything that's a higher-level applied style into
main.sass
Move as much as what makes sense into the
main.sass
file, keeping the section-specific files for styles that only apply there
globals.sass
(which should contain the style primitives) toprimitives.sass
styles.sass
, and move anything that's a higher-level applied style intomain.sass
main.sass
file, keeping the section-specific files for styles that only apply there