Skip to content

nilq/nss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

12 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Niels Style Sheets

Making a new CSS super-set in one quarantine evening.

Syntax

test.nss

@variable = red
@cool_image = "/assets/cool_image.jpeg"

body, h1
  color: blue
  background: url(@cool_image)!

a, button
  color: @variable

This outputs following

test.css

body, h1 {
  color: blue;
  background: url("/assets/cool_image.jpeg") !important;
}

a, button {
  color: red;
}

Details

  • Start: March 20, 22:03
  • End: March 21, 00:55
  • Timelapse

License

MIT for now

About

๐Ÿ“ˆ Making a new CSS in one evening

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages