0.0.1 • Published 11 years ago

spiffing v0.0.1

Weekly downloads
6
License
-
Repository
github
Last release
11 years ago

Spiffing-node

Write CSS using proper English anywhere with Spiffing.

Spiffing is a node module version of Spiffing CSS by @idiot. A CSS preprocessor for British developers, or developers who prefer to write proper English.

Usage

spiffing

Convert all css files under current directory

spiffing <directory>

Convert all css files under specified directory

spiffing <filename>

Convert the css file specified

What this does

/* Your well-spelt CSS */

body {
  background-colour: grey !please;
  transparency: 0.5;
  text-align: centre;
  font-weight: plump;
  text-transform: capitalise;
}

.frame {
  background-photograph: url('/queen.png') !please;
}

becomes

/* Output CSS */

body {
  background-color: gray !important;
  opacity: 0.5;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
}

.frame {
  background-image: url('/queen.png') !important;
}
0.0.1

11 years ago