CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 14 Aug 2025 17:34:32 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090830180430
location: https://web.archive.org/web/20090830180430/https://github.com/joshuaclayton/blueprint-css/tree/v0.6
server-timing: captures_list;dur=0.834152, exclusion.robots;dur=0.031745, exclusion.robots.policy;dur=0.018997, esindex;dur=0.013113, cdx.remote;dur=214.090182, LoadShardBlock;dur=151.927902, PetaboxLoader3.datanode;dur=57.319275, PetaboxLoader3.resolve;dur=61.782355
x-app-server: wwwb-app202
x-ts: 302
x-tr: 422
server-timing: TR;dur=0,Tw;dur=2429,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app202; 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: Thu, 14 Aug 2025 17:34:36 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Sun, 30 Aug 2009 18:04:30 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 297ms
x-archive-orig-etag: "410833d0ed5550f24dcdb2768f7e9ba2"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 26589
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 30 Aug 2009 18:04:30 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 26 Aug 2008 07:49:26 GMT", ; rel="prev memento"; datetime="Thu, 18 Jun 2009 22:55:25 GMT", ; rel="memento"; datetime="Sun, 30 Aug 2009 18:04:30 GMT", ; rel="next memento"; datetime="Mon, 30 Nov 2009 23:19:15 GMT", ; rel="last memento"; datetime="Mon, 18 Oct 2010 13:22:43 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_11_20090830130741_crawl101.gpg-c/52_11_20090830180322_crawl101.arc.gz
server-timing: captures_list;dur=0.503858, exclusion.robots;dur=0.024795, exclusion.robots.policy;dur=0.015722, esindex;dur=0.010096, cdx.remote;dur=522.802455, LoadShardBlock;dur=180.969269, PetaboxLoader3.datanode;dur=163.931991, PetaboxLoader3.resolve;dur=249.111539, load_resource;dur=270.253436
x-app-server: wwwb-app202
x-ts: 200
x-tr: 1036
server-timing: TR;dur=0,Tw;dur=2748,Tc;dur=1
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
joshuaclayton's blueprint-css at v0.6 - 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 (

Description: | A CSS framework that aims to cut down on your CSS development time edit |
Homepage: | https://www.blueprintcss.org edit |
Public Clone URL: |
git://github.com/joshuaclayton/blueprint-css.git
Give this clone URL to anyone.
git clone git://github.com/joshuaclayton/blueprint-css.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:joshuaclayton/blueprint-css.git
|
Readme
Blueprint CSS Framework Readme * URL: code.google.com/p/blueprintcss * List: groups.google.com/group/blueprintcss * News: bjorkoy.com ---------------------------------------------------------------- Welcome to Blueprint! This is a CSS framework designed to cut down on your CSS development time. It gives you a solid foundation to build your own CSS on. Here are some of the features BP provides out-of-the-box: * An easily customizable grid * Sensible default typography * A typographic baseline * Perfected browser CSS reset * A stylesheet for printing * Absolutely no bloat! Setup instructions ---------------------------------------------------------------- Here's how you set up Blueprint on your site. 1) Upload the "blueprint" folder in this folder to your server, and place it in whatever folder you'd like. A good choice would be your CSS folder. 2) Add the following three lines to every <head> section of your site. Make sure the three href paths are correct (here, BP is in my CSS folder): <link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"> <link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"> <!--[if IE]><link rel="stylesheet" href="css/blueprint/lib/ie.css" type="text/css" media="screen, projection"><![endif]--> 3) See screen.css for further configuration options, including advanced functionality through plugins. 4) To use the compressed version on a live site, edit the href paths above to point to the blueprint/compressed directory, where you'll find compressed versions of screen.css and print.css. How to use Blueprint ---------------------------------------------------------------- Here's a quick primer on how to use BP: https://code.google.com/p/blueprintcss/wiki/Tutorial Each CSS file is also heavily commented, so you'll learn a lot by reading through them. Files in Blueprint ---------------------------------------------------------------- The framework has a few files you should check out. Every file contains lots of (hopefully) clarifying comments. Main files: * blueprint/screen.css This is the main file of the framework. It imports other CSS files from the "lib" directory, and should be included on every page. We also call it the the configuration file, although you don't actually have to modify it. * blueprint/print.css This file sets some default print rules, so that printed versions of your site looks better than they usually would. It should be included on every page. Core files: * blueprint/lib/grid.css This file sets up the grid (it's true). It has a lot of classes you apply to divs to set up any sort of column-based grid. * blueprint/lib/typography.css This file sets some default typography. It also has a few methods for some really fancy stuff to do with your text. * blueprint/lib/reset.css This file resets CSS values that browsers tend to set for you. * blueprint/compressed/screen.css & blueprint/compressed/print.css A compressed version of the core and print files. Use this on every live site. Use the link tags in the HTML to include these. * blueprint/lib/ie.css Contains every hack for Internet Explorer,so that our core files stay sweet and valid. Other: * blueprint/plugins/ Contains additional functionality in the form of simple plugins for Blueprint. See individual readme files in the directory of each plugin for further instructions. * scripts/ BP comes with two scripts: * One for validating the CSS in the core files. * One for re-compressing the files in the "compressed" folder from the core files, if you've made changes to the core. * tests/ Contains html files which tests most aspects of Blueprint. Open tests/index.html for further instructions. Credits ---------------------------------------------------------------- Many parts of BP are directly inspired by other peoples work. You may thank them for their brilliance. However, *do not* ask them for support or any kind of help with BP. * Jeff Croft [jeffcroft.com] * Nathan Borror [playgroundblues.com] * Christian Metts [mintchaos.com] * Wilson Miner [wilsonminer.com] * The Typogrify Project [code.google.com/p/typogrify] * Eric Meyer [meyerweb.com/eric] * Angus Turnbull [twinhelix.com] * Khoi Vinh [subtraction.com] Questions, comments, suggestions or bug reports go to olav at bjorkoy dot com. Thanks for your interest!
This feature is coming soon. Sit tight!