CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 29 Aug 2025 02:30:07 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090620091733
location: https://web.archive.org/web/20090620091733/https://github.com/cloudhead/less/tree/v0.7.0
server-timing: captures_list;dur=0.958569, exclusion.robots;dur=0.031717, exclusion.robots.policy;dur=0.014309, esindex;dur=0.016468, cdx.remote;dur=26.621077, LoadShardBlock;dur=183.568532, PetaboxLoader3.datanode;dur=47.854267, PetaboxLoader3.resolve;dur=62.490849
x-app-server: wwwb-app220
x-ts: 302
x-tr: 270
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app220; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 29 Aug 2025 02:30:07 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Sat, 20 Jun 2009 09:17:33 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 154ms
x-archive-orig-etag: "6fdd25454d1d81021d477c54329e30c5"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 23272
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 20 Jun 2009 09:17:33 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 20 Jun 2009 09:17:33 GMT", ; rel="memento"; datetime="Sat, 20 Jun 2009 09:17:33 GMT", ; rel="next memento"; datetime="Thu, 20 Aug 2009 03:29:59 GMT", ; rel="last memento"; datetime="Sat, 07 Aug 2010 17:59:23 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_10_20090620075715_crawl101_IndexOnly-c/52_10_20090620091622_crawl101.arc.gz
server-timing: captures_list;dur=0.607200, exclusion.robots;dur=0.022601, exclusion.robots.policy;dur=0.010254, esindex;dur=0.012947, cdx.remote;dur=6.060293, LoadShardBlock;dur=95.318818, PetaboxLoader3.datanode;dur=111.163769, PetaboxLoader3.resolve;dur=68.470119, load_resource;dur=152.601739
x-app-server: wwwb-app220
x-ts: 200
x-tr: 360
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
cloudhead's less at v0.7.0 - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Run the following if you haven't already:
gem sources -a https://gems.github.com
Install the gem(s):
sudo gem install cloudhead-less
Description: | Leaner CSS edit |
Homepage: | lesscss.org edit |
Public Clone URL: |
git://github.com/cloudhead/less.git
Give this clone URL to anyone.
git clone git://github.com/cloudhead/less.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:cloudhead/less.git
|
less /
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Mon May 18 21:10:07 -0700 2009 | cleanup [cloudhead] |
![]() |
LICENSE | Loading commit data... ![]() |
|
![]() |
README.md | Mon May 18 21:05:02 -0700 2009 | jeweler & gem stuff [cloudhead] |
![]() |
Rakefile | ||
![]() |
VERSION | ||
![]() |
bin/ | ||
![]() |
less.gemspec | ||
![]() |
lib/ | Wed May 20 01:33:29 -0700 2009 | unit operations! [cloudhead] |
![]() |
spec/ |
LESS
It's time CSS was done right – LESS is leaner css.
Explained
LESS allows you to write CSS the way (I think) it was meant to, that is: with variables, nested rules and mixins!
Here's some example LESS code:
@dark: #110011;
.outline { border: 1px solid black }
.article {
a { text-decoration: none }
p { color: @dark }
.outline;
}
And the CSS output it produces:
.outline { border: 1px solid black }
.article > a { text-decoration: none }
.article > p { color: #110011 }
.article { border: 1px solid black }
If you have CSS nightmares, just
$ lessc style.less
This feature is coming soon. Sit tight!