Skip to content

Instantly share code, notes, and snippets.

@jasonlemay
Created May 14, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonlemay/b37f5baf01ba5e33050d to your computer and use it in GitHub Desktop.
Save jasonlemay/b37f5baf01ba5e33050d to your computer and use it in GitHub Desktop.
Managing your CSS (GSS) files with variables and a theme
/* src/main/resources/com/company/project/client/resources/css/theme.gss */
body {
font-family: F_PRIMARY;
/* will output : */
font-family: 'My Cool Typo', sans-serif;
}
h1 {
font-family: F_PRIMARY_BOLD;
/* will output : */
font-family: 'My Cool Typo', sans-serif;
font-weight: 700;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment