Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@muditlambda
Last active November 28, 2019 11:47
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 muditlambda/d74fd33623f67f5a187874dab6da3b6f to your computer and use it in GitHub Desktop.
Save muditlambda/d74fd33623f67f5a187874dab6da3b6f to your computer and use it in GitHub Desktop.
/* STYLUS SYNTAX WRITTEN LIKE NATIVE CSS */
font-color = #fff;
bg-color = #00f;
#box {
color: font-color;
background: bg-color;
}
/* OR */
/* STYLUS SYNTAX WITHOUT CURLY BRACES */
font-color = #fff;
bg-color = #00f;
#box
color: font-color;
background: bg-color;
/* OR */
/* STYLUS SYNTAX WITHOUT COLONS AND SEMICOLONS */
font-color = #fff
bg-color = #00f
#box
color font-color
background bg-color
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment