Skip to content

A (very) small CSS preprocessor. It implements SCSS style variables for your css file(s).

License

Notifications You must be signed in to change notification settings

richi/yellow-plugin-dynamiccss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DynamicCss plugin 0.1.3

A (very) small CSS preprocessor. It implements SCSS style variables for your css file(s).

Variables are a way to store information that you want to reuse in a stylesheet. Change the value of a variable and all the instances where it is used will update automatically.

Variables have to be declared and initialised:

$default-margin: 1em;
$text-color: #222;
$border-color: #bbb;

Later on they can be used:

blockquote {
	margin: $default-margin;
	color: $text-color;
	border-left: 4px solid $border-color;
}

How to install?

  1. Download and install Yellow.
  2. Download plugin. If you are using Safari, right click and select 'Download file as'.
  3. Copy master.zip into your system/plugins folder.
  4. Use $variables in the .css file(s) in your system/themes folder.

To uninstall delete the plugin files.

About

A (very) small CSS preprocessor. It implements SCSS style variables for your css file(s).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages