CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 18 Aug 2025 21:25:53 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100209055828
location: https://web.archive.org/web/20100209055828/https://github.com/cloudhead/less/tree/v1.1.10
server-timing: captures_list;dur=0.577128, exclusion.robots;dur=0.020133, exclusion.robots.policy;dur=0.009920, esindex;dur=0.011485, cdx.remote;dur=19.237809, LoadShardBlock;dur=432.188554, PetaboxLoader3.datanode;dur=43.381661, PetaboxLoader3.resolve;dur=356.018804
x-app-server: wwwb-app203
x-ts: 302
x-tr: 481
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app203; 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: Mon, 18 Aug 2025 21:25:56 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 09 Feb 2010 05:58:28 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "56427e11290d6201eaf8cb90ff637818"
x-archive-orig-x-runtime: 113ms
x-archive-orig-content-length: 27802
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 09 Feb 2010 05:58:28 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 08 Aug 2009 13:19:52 GMT", ; rel="prev memento"; datetime="Tue, 08 Dec 2009 15:26:25 GMT", ; rel="memento"; datetime="Tue, 09 Feb 2010 05:58:28 GMT", ; rel="next memento"; datetime="Sun, 18 Apr 2010 02:30:57 GMT", ; rel="last memento"; datetime="Sun, 08 Aug 2010 05:11:42 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_14_20100209035235_crawl102-c/52_14_20100209055738_crawl101.arc.gz
server-timing: captures_list;dur=0.485182, exclusion.robots;dur=0.019386, exclusion.robots.policy;dur=0.008708, esindex;dur=0.009909, cdx.remote;dur=6.989047, LoadShardBlock;dur=2033.927506, PetaboxLoader3.resolve;dur=2175.020114, PetaboxLoader3.datanode;dur=74.807595, load_resource;dur=235.918297
x-app-server: wwwb-app203
x-ts: 200
x-tr: 2365
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 v1.1.10 - GitHub
This service is courtesy of Pledgie.
cloudhead / less
- Source
- Commits
- Network (43)
- Issues (55)
- Downloads (47)
- Graphs
-
Tag:
v1.1.10
click here to add a description
click here to add a homepage
- Branches (3)
-
Tags (47)
- v1.2.21
- v1.2.20
- v1.2.19
- v1.2.18
- v1.2.17
- v1.2.16
- v1.2.15
- v1.2.14
- v1.2.13
- v1.2.12
- v1.2.11
- v1.2.10
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.13
- v1.1.12
- v1.1.11
- v1.1.10
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.16
- v1.0.15
- v1.0.13
- v1.0.6
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.7.0
- v0.5.2
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Leaner CSS — Read more
less /
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Mon May 18 21:10:07 -0700 2009 | cleanup [cloudhead] |
![]() |
CHANGELOG | Wed Jul 29 19:27:20 -0700 2009 | ruby 1.8 fix & updated changelog [cloudhead] |
![]() |
LICENSE | Mon May 18 18:18:49 -0700 2009 | apache license [cloudhead] |
![]() |
README.md | Loading commit data... ![]() |
|
![]() |
Rakefile | ||
![]() |
VERSION | ||
![]() |
bin/ | ||
![]() |
less.gemspec | ||
![]() |
lib/ | ||
![]() |
spec/ |
README.md
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
For more information, see you at [https://lesscss.org]
People without whom this wouldn't have happened a.k.a Credits
- Dmitry Fadeyev, for pushing me to do this, and designing our awesome website
- August Lilleaas, for initiating the work on the treetop grammar, as well as writing the rails plugin
- Nathan Sobo, for creating treetop
- Jason Garber, for his magical performance optimizations on treetop
- And finally, the people of #ruby-lang for answering all my ruby questions. apeiros, manveru and rue come to mind