├── website (ch16-00) ├── css │ ├── styles-ie.css │ ├── styles-ie7.css │ └── reset.css ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno └── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── website (ch16-01) ├── css │ ├── styles-ie.css │ ├── styles-ie7.css │ └── reset.css ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno └── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── website (ch17-00) ├── css │ ├── styles-ie.css │ ├── styles-ie7.css │ └── reset.css ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno └── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── website (complete) ├── css │ ├── styles-ie.css │ ├── styles-ie7.css │ └── reset.css ├── images │ ├── logo.png │ ├── check.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bg-footer.jpg │ ├── bdr-footer.png │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── bg-newsletter.png │ ├── socks-horses.png │ ├── banner-25percent.png │ ├── banner-trainers.jpg │ ├── icon-newsletter.png │ └── _notes │ │ └── bdr-footer.png.mno └── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ ├── Belgrano-Regular.woff │ └── Belgrano-OFL.txt ├── website (ch02-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ └── banner-25percent.png └── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── website (ch03-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ └── banner-25percent.png ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ ├── styles.css │ └── reset.css ├── website (ch04-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ └── banner-25percent.png ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ ├── reset.css │ └── styles.css ├── website (ch04-01) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ └── banner-25percent.png ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ ├── reset.css │ └── styles.css ├── website (ch05-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ └── banner-25percent.png ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── border-styles.html └── css │ ├── reset.css │ └── styles.css ├── website (ch05-01) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ ├── reset.css │ └── styles.css ├── website (ch05-02) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ ├── reset.css │ └── styles.css ├── website (ch06-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch07-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch07-01) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch07-02) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch08-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch09-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── display-property-demo.html └── css │ └── reset.css ├── website (ch09-01) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch09-02) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── css │ └── reset.css └── vertical-align-property-demo.html ├── website (ch10-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── generic-fonts-demo.html └── css │ └── reset.css ├── website (ch11-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch11-01) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch11-02) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff ├── css │ └── reset.css └── list-style-demo.html ├── website (ch12-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch13-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch14-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch14-01) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch14-02) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css ├── website (ch15-00) ├── images │ ├── check.png │ ├── logo.png │ ├── bg-blog.png │ ├── bg-body.jpg │ ├── bdr-footer.png │ ├── bg-footer.jpg │ ├── logo-small.png │ ├── banner-shoes.jpg │ ├── banner-socks.jpg │ ├── socks-horses.png │ ├── banner-trainers.jpg │ ├── bg-newsletter.png │ ├── icon-newsletter.png │ ├── banner-25percent.png │ └── _notes │ │ └── bdr-footer.png.mno ├── fonts │ ├── Average-Regular.eot │ ├── Average-Regular.woff │ ├── Belgrano-Regular.eot │ └── Belgrano-Regular.woff └── css │ └── reset.css └── README.md /website (ch16-00)/css/styles-ie.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 960px; 3 | } -------------------------------------------------------------------------------- /website (ch16-01)/css/styles-ie.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 960px; 3 | } -------------------------------------------------------------------------------- /website (ch17-00)/css/styles-ie.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 960px; 3 | } -------------------------------------------------------------------------------- /website (complete)/css/styles-ie.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 960px; 3 | } -------------------------------------------------------------------------------- /website (ch02-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/check.png -------------------------------------------------------------------------------- /website (ch02-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch03-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/check.png -------------------------------------------------------------------------------- /website (ch03-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch04-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/check.png -------------------------------------------------------------------------------- /website (ch04-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch04-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/check.png -------------------------------------------------------------------------------- /website (ch04-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch05-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/check.png -------------------------------------------------------------------------------- /website (ch05-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch05-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/check.png -------------------------------------------------------------------------------- /website (ch05-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch05-02)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/check.png -------------------------------------------------------------------------------- /website (ch05-02)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/logo.png -------------------------------------------------------------------------------- /website (ch06-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/check.png -------------------------------------------------------------------------------- /website (ch06-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch07-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/check.png -------------------------------------------------------------------------------- /website (ch07-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch07-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/check.png -------------------------------------------------------------------------------- /website (ch07-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch07-02)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/check.png -------------------------------------------------------------------------------- /website (ch07-02)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/logo.png -------------------------------------------------------------------------------- /website (ch08-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/check.png -------------------------------------------------------------------------------- /website (ch08-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch09-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/check.png -------------------------------------------------------------------------------- /website (ch09-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch09-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/check.png -------------------------------------------------------------------------------- /website (ch09-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch09-02)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/check.png -------------------------------------------------------------------------------- /website (ch09-02)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/logo.png -------------------------------------------------------------------------------- /website (ch10-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/check.png -------------------------------------------------------------------------------- /website (ch10-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch11-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/check.png -------------------------------------------------------------------------------- /website (ch11-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch11-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/check.png -------------------------------------------------------------------------------- /website (ch11-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch11-02)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/check.png -------------------------------------------------------------------------------- /website (ch11-02)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/logo.png -------------------------------------------------------------------------------- /website (ch12-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/check.png -------------------------------------------------------------------------------- /website (ch12-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch13-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/check.png -------------------------------------------------------------------------------- /website (ch13-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch14-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/check.png -------------------------------------------------------------------------------- /website (ch14-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch14-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/check.png -------------------------------------------------------------------------------- /website (ch14-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch14-02)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/check.png -------------------------------------------------------------------------------- /website (ch14-02)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/logo.png -------------------------------------------------------------------------------- /website (ch15-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/check.png -------------------------------------------------------------------------------- /website (ch15-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch16-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/check.png -------------------------------------------------------------------------------- /website (ch16-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/logo.png -------------------------------------------------------------------------------- /website (ch16-01)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/check.png -------------------------------------------------------------------------------- /website (ch16-01)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/logo.png -------------------------------------------------------------------------------- /website (ch17-00)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/check.png -------------------------------------------------------------------------------- /website (ch17-00)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/logo.png -------------------------------------------------------------------------------- /website (complete)/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/logo.png -------------------------------------------------------------------------------- /website (ch02-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch02-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch03-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch03-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch04-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch04-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch04-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch04-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch05-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch05-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch05-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch05-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch05-02)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch05-02)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch06-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch06-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch07-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch07-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch07-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch07-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch07-02)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch07-02)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch08-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch08-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch09-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch09-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch09-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch09-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch09-02)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch09-02)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch10-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch10-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch11-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch11-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch11-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch11-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch11-02)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch11-02)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch12-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch12-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch13-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch13-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch14-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch14-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch14-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch14-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch14-02)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch14-02)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch15-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch15-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch16-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch16-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch16-01)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch16-01)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (ch17-00)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/bg-blog.png -------------------------------------------------------------------------------- /website (ch17-00)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (complete)/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/check.png -------------------------------------------------------------------------------- /website (ch02-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch02-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch02-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch03-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch03-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch03-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch04-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch04-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch04-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch04-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch04-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch04-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch05-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch05-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch05-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch05-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch05-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch05-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch05-02)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch05-02)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch05-02)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch06-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch06-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch06-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch07-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch07-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch07-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch07-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch07-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch07-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch07-02)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch07-02)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch07-02)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch08-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch08-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch08-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch09-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch09-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch09-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch09-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch09-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch09-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch09-02)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch09-02)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch09-02)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch10-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch10-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch10-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch11-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch11-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch11-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch11-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch11-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch11-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch11-02)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch11-02)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch11-02)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch12-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch12-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch12-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch13-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch13-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch13-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch14-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch14-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch14-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch14-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch14-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch14-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch14-02)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch14-02)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch14-02)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch15-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch15-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch15-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch16-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch16-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch16-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch16-01)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch16-01)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch16-01)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch17-00)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (ch17-00)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch17-00)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/logo-small.png -------------------------------------------------------------------------------- /website (complete)/images/bg-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/bg-blog.png -------------------------------------------------------------------------------- /website (complete)/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/bg-body.jpg -------------------------------------------------------------------------------- /website (complete)/images/bg-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/bg-footer.jpg -------------------------------------------------------------------------------- /website (ch02-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch02-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch02-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch03-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch03-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch03-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch04-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch04-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch04-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch04-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch04-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch04-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch05-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch05-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch05-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch05-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch05-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch05-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch05-02)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch05-02)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch05-02)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch06-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch06-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch06-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch07-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch07-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch07-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch07-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch07-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch07-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch07-02)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch07-02)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch07-02)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch08-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch08-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch08-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch09-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch09-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch09-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch09-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch09-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch09-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch09-02)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch09-02)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch09-02)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch10-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch10-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch10-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch11-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch11-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch11-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch11-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch11-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch11-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch11-02)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch11-02)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch11-02)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch12-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch12-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch12-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch13-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch13-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch13-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch14-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch14-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch14-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch14-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch14-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch14-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch14-02)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch14-02)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch14-02)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch15-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch15-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch15-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch16-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch16-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch16-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch16-01)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch16-01)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch16-01)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch17-00)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (ch17-00)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (ch17-00)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/socks-horses.png -------------------------------------------------------------------------------- /website (complete)/images/bdr-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/bdr-footer.png -------------------------------------------------------------------------------- /website (complete)/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/logo-small.png -------------------------------------------------------------------------------- /website (ch02-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch02-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch02-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch02-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch02-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch02-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch03-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch03-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch03-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch03-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch03-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch03-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch04-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch04-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch04-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch04-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch04-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch04-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch04-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch04-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch04-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch04-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch04-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch04-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch05-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch05-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch05-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch05-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch05-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch05-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch05-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch05-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch05-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch05-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch05-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch05-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch05-02)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch05-02)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch05-02)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch05-02)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch05-02)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch05-02)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch06-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch06-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch06-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch06-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch06-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch06-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch07-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch07-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch07-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch07-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch07-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch07-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch07-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch07-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch07-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch07-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch07-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch07-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch07-02)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch07-02)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch07-02)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch07-02)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch07-02)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch07-02)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch08-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch08-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch08-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch08-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch08-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch08-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch09-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch09-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch09-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch09-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch09-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch09-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch09-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch09-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch09-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch09-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch09-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch09-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch09-02)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch09-02)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch09-02)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch09-02)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch09-02)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch09-02)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch10-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch10-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch10-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch10-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch10-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch10-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch11-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch11-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch11-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch11-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch11-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch11-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch11-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch11-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch11-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch11-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch11-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch11-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch11-02)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch11-02)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch11-02)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch11-02)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch11-02)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch11-02)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch12-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch12-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch12-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch12-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch12-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch12-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch13-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch13-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch13-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch13-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch13-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch13-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch14-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch14-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch14-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch14-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch14-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch14-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch14-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch14-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch14-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch14-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch14-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch14-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch14-02)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch14-02)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch14-02)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch14-02)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch14-02)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch14-02)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch15-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch15-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch15-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch15-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch15-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch15-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch16-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch16-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch16-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch16-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch16-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch16-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch16-01)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch16-01)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch16-01)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch16-01)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch16-01)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch16-01)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (ch17-00)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (ch17-00)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (ch17-00)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (ch17-00)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (ch17-00)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (ch17-00)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (complete)/fonts/Average-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/fonts/Average-Regular.eot -------------------------------------------------------------------------------- /website (complete)/images/banner-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/banner-shoes.jpg -------------------------------------------------------------------------------- /website (complete)/images/banner-socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/banner-socks.jpg -------------------------------------------------------------------------------- /website (complete)/images/bg-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/bg-newsletter.png -------------------------------------------------------------------------------- /website (complete)/images/socks-horses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/socks-horses.png -------------------------------------------------------------------------------- /website (ch02-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch02-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch02-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch03-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch03-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch03-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch04-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch04-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch04-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch04-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch04-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch05-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch05-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch05-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch05-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch05-02)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch05-02)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch05-02)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch06-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch06-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch06-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch07-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch07-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch07-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch07-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch07-02)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch07-02)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch07-02)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch08-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch08-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch08-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch09-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch09-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch09-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch09-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch09-02)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch09-02)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch09-02)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch10-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch10-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch10-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch11-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch11-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch11-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch11-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch11-02)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch11-02)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch11-02)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch12-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch12-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch12-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch13-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch13-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch13-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch14-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch14-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch14-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch14-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch14-02)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch14-02)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch14-02)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch15-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch15-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch15-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch16-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch16-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch16-01)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch16-01)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch16-01)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (ch17-00)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (ch17-00)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (ch17-00)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (complete)/fonts/Average-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/fonts/Average-Regular.woff -------------------------------------------------------------------------------- /website (complete)/fonts/Belgrano-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/fonts/Belgrano-Regular.eot -------------------------------------------------------------------------------- /website (complete)/fonts/Belgrano-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/fonts/Belgrano-Regular.woff -------------------------------------------------------------------------------- /website (complete)/images/banner-25percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/banner-25percent.png -------------------------------------------------------------------------------- /website (complete)/images/banner-trainers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/banner-trainers.jpg -------------------------------------------------------------------------------- /website (complete)/images/icon-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/CSS3-Foundations/HEAD/website (complete)/images/icon-newsletter.png -------------------------------------------------------------------------------- /website (complete)/fonts/Belgrano-OFL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 1 Week: 2280 7 | 8 | 9 | Received: 15048 10 | 5 Weeks (Done): 11400 11 | Owe: 3648 12 | 13 | 14 | 15 | Total: 25080 -------------------------------------------------------------------------------- /website (ch05-01)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch05-02)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch06-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch07-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch07-01)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch07-02)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch08-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch09-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch09-01)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch09-02)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch10-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch11-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch11-01)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch11-02)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch12-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch13-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch14-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch14-01)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch14-02)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch15-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch16-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch16-01)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch17-00)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (complete)/images/_notes/bdr-footer.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website (ch03-00)/css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | For use with CSS3 Foundations: Styling the Modern Web 4 | CSS3 Foundations Book: www.wiley.com/go/treehouse/css3foundations 5 | 6 | Project Files: 03-00 7 | 8 | */ 9 | 10 | @import url("reset.css"); -------------------------------------------------------------------------------- /website (ch16-00)/css/styles-ie7.css: -------------------------------------------------------------------------------- 1 | #header nav > ul > li { 2 | display: inline; 3 | vertical-align: top; 4 | } 5 | 6 | blockquote cite { 7 | width: 100%; 8 | text-align: right; 9 | } 10 | 11 | input[type="text"],input[type="email"] { 12 | width: 88%; 13 | } -------------------------------------------------------------------------------- /website (ch16-01)/css/styles-ie7.css: -------------------------------------------------------------------------------- 1 | #header nav > ul > li { 2 | display: inline; 3 | vertical-align: top; 4 | } 5 | 6 | blockquote cite { 7 | width: 100%; 8 | text-align: right; 9 | } 10 | 11 | input[type="text"],input[type="email"] { 12 | width: 88%; 13 | } -------------------------------------------------------------------------------- /website (ch17-00)/css/styles-ie7.css: -------------------------------------------------------------------------------- 1 | #header nav > ul > li { 2 | display: inline; 3 | vertical-align: top; 4 | } 5 | 6 | blockquote cite { 7 | width: 100%; 8 | text-align: right; 9 | } 10 | 11 | input[type="text"],input[type="email"] { 12 | width: 88%; 13 | } -------------------------------------------------------------------------------- /website (complete)/css/styles-ie7.css: -------------------------------------------------------------------------------- 1 | #header nav > ul > li { 2 | display: inline; 3 | vertical-align: top; 4 | } 5 | 6 | blockquote cite { 7 | width: 100%; 8 | text-align: right; 9 | } 10 | 11 | input[type="text"],input[type="email"] { 12 | width: 88%; 13 | } -------------------------------------------------------------------------------- /website (ch10-00)/generic-fonts-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | Cool Shoes & Socks 16 | 37 | 38 | 39 | 46 | 47 | -------------------------------------------------------------------------------- /website (ch05-00)/border-styles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 58 | 59 | 60 |

Dotted

61 |

Dashed

62 |

Solid

63 |

Double

64 |

Groove

65 |

Ridge

66 |

Inset

67 |

Outset

68 | 69 | -------------------------------------------------------------------------------- /website (ch09-00)/display-property-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 35 | 36 | 37 |
38 | Block 39 |
40 | 41 |
42 | Block 43 |
44 | 45 |
46 | Inline 47 |
48 | 49 |
50 | Inline 51 |
52 | 53 |
54 | Block 55 |
56 | 57 |
58 | Inline-Block 59 |
60 | 61 |
62 | Inline-Block 63 |
64 | 65 | -------------------------------------------------------------------------------- /website (ch03-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch04-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch04-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch05-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch05-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch05-02)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch06-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch07-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch07-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch07-02)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch08-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch09-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch09-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch09-02)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch10-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch11-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch11-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch11-02)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch12-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch13-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch14-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch14-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch14-02)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch15-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch16-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch16-01)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch17-00)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (complete)/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /website (ch04-00)/css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | For use with CSS3 Foundations: Styling the Modern Web 4 | CSS3 Foundations Book: www.wiley.com/go/treehouse/css3foundations 5 | 6 | Project Files: 04-00 7 | 8 | */ 9 | 10 | @import url("reset.css"); 11 | 12 | body { 13 | background-color: gray; 14 | background-image: url("../images/bg-body.jpg"); 15 | } 16 | 17 | h1, h2, h3, h4 { 18 | font-weight: bold; 19 | } 20 | 21 | #main { 22 | background-color: white; 23 | } 24 | 25 | .button { 26 | background-color: hotpink; 27 | color: white; 28 | } 29 | 30 | blockquote p { 31 | font-style: italic; 32 | } 33 | 34 | blockquote p:before { 35 | content: "\201C"; 36 | } 37 | 38 | blockquote p:after { 39 | content: "\201D"; 40 | } 41 | 42 | aside > h3 { 43 | font-weight: bold; 44 | } 45 | 46 | p + .offer { 47 | color: red; 48 | } 49 | 50 | input[type="text"], input[type="email"] { 51 | border: none; 52 | } 53 | 54 | input[type="submit"][class="button"] { 55 | font-size: 1em; 56 | } 57 | 58 | a:link { 59 | text-decoration: underline; 60 | } 61 | 62 | a:hover { 63 | text-decoration: none; 64 | } 65 | 66 | a:visited { 67 | color: black; 68 | } 69 | 70 | a:active { 71 | color: red; 72 | } 73 | 74 | a:focus { 75 | outline-color: black; 76 | outline-style: dotted; 77 | outline-width: 1px; 78 | } 79 | 80 | #content p:first-of-type:first-letter { 81 | font-size: 4em; 82 | font-weight: bold; 83 | } -------------------------------------------------------------------------------- /website (ch04-01)/css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | For use with CSS3 Foundations: Styling the Modern Web 4 | CSS3 Foundations Book: www.wiley.com/go/treehouse/css3foundations 5 | 6 | Project Files: 04-01 7 | 8 | */ 9 | 10 | @import url("reset.css"); 11 | 12 | body { 13 | background-color: #f5f5f5; 14 | background-image: url("../images/bg-body.jpg"); 15 | } 16 | 17 | h1, h2, h3, h4 { 18 | font-weight: bold; 19 | } 20 | 21 | #main { 22 | background-color: white; 23 | background-color: rgba(255, 255, 255, 0.6); 24 | } 25 | 26 | .button { 27 | background-color: hotpink; 28 | color: white; 29 | } 30 | 31 | blockquote p { 32 | font-style: italic; 33 | } 34 | 35 | blockquote p:before { 36 | content: "\201C"; 37 | } 38 | 39 | blockquote p:after { 40 | content: "\201D"; 41 | } 42 | 43 | aside > h3 { 44 | font-weight: bold; 45 | } 46 | 47 | p + .offer { 48 | color: red; 49 | } 50 | 51 | input[type="text"], input[type="email"] { 52 | border: none; 53 | } 54 | 55 | input[type="submit"][class="button"] { 56 | font-size: 1em; 57 | } 58 | 59 | input[type="submit"][class="button"]:hover { 60 | background-color: #d4326d; 61 | } 62 | 63 | a:link { 64 | text-decoration: underline; 65 | } 66 | 67 | a:hover { 68 | text-decoration: none; 69 | } 70 | 71 | a:visited { 72 | color: black; 73 | } 74 | 75 | a:active { 76 | color: red; 77 | } 78 | 79 | a:focus { 80 | outline-color: black; 81 | outline-style: dotted; 82 | outline-width: 1px; 83 | } 84 | 85 | #content p:first-of-type:first-letter { 86 | font-size: 4em; 87 | font-weight: bold; 88 | } 89 | 90 | #newsletter { 91 | color: white; 92 | background-color: #00ACDF; 93 | } 94 | 95 | #footer { 96 | background-color: #ccc; 97 | background-image: url("../images/bg-footer.jpg"); 98 | } 99 | 100 | .showcase .button:hover { 101 | background-color: #00ACDF; 102 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #CSS3 Foundations - Project Files 2 | ##About CSS3 Foundations 3 | [CSS3 Foundations](http://css3foundations.com/) is a part of the [Treehouse](http://teamtreehouse.com/) series of books, published by [John Wiley & Sons](http://wiley.com/). 4 | 5 | [CSS3 Foundations](http://css3foundations.com/) is a hands-on approach to guide readers through the process of using CSS3 features and techniques to take a basic website template and turn it into a real-world, modern and future proof website. 6 | 7 | From learning how to add CSS to a page, to using advanced techniques such as Responsive Web Design, each example is clear and well structured, lending to the overall main project that the book builds upon throughout. 8 | 9 | [CSS3 Foundations](http://css3foundations.com/) tackles many of the difficulties faced when building a website; fixing inconsistencies in older browsers, safely using CSS3 features still in development, and optimizing a websites layout for the device it is being viewed upon. 10 | 11 | If you’re a web developer, web designer, hobbyist, or career-changer, every book in the Treehouse series should be on your bookshelf. 12 | 13 | ##Author 14 | [@IanLunn](http://twitter.com/IanLunn) 15 | [IanLunn.co.uk](http://ianlunn.co.uk/) 16 | 17 | ##Getting Started 18 | Each folder contains all of the necessary files for the Cool Shoes & Socks web page built upon throughout [CSS3 Foundations](http://css3foundations.com/). As you make your way through the CSS3 Foundations book, you will be prompted when milestones are reached so you can compare your work with the most up to date project files. 19 | 20 | ##Competition: Win CSS3 Foundations and a 2 Year Gold Membership at Treehouse 21 | If you'd like to [win a copy of CSS3 Foundations and a 2 year gold membership to Treehouse](http://ianlunn.co.uk/articles/competition-win-a-2-year-treehouse-gold-membership-css3-foundations/), where you can learn web technologies, head on over to the [competition on my blog](http://ianlunn.co.uk/articles/competition-win-a-2-year-treehouse-gold-membership-css3-foundations/). Closes March 15th 2013. 22 | -------------------------------------------------------------------------------- /website (ch05-00)/css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | For use with CSS3 Foundations: Styling the Modern Web 4 | CSS3 Foundations Book: www.wiley.com/go/treehouse/css3foundations 5 | 6 | Project Files: 05-00 7 | 8 | */ 9 | 10 | @import url("reset.css"); 11 | 12 | body { 13 | background-color: #f5f5f5; 14 | background-image: url("../images/bg-body.jpg"); 15 | font-size: 62.5%; 16 | } 17 | 18 | #header, #main, #footer { 19 | font-size: 1.6em; /* inherited value (10px) x 1.6em = 16px */ 20 | } 21 | 22 | h1, h2, h3, h4 { 23 | font-weight: bold; 24 | } 25 | 26 | #main { 27 | background-color: white; 28 | background-color: rgba(255, 255, 255, 0.6); 29 | } 30 | 31 | .button { 32 | background-color: hotpink; 33 | color: white; 34 | } 35 | 36 | blockquote p { 37 | font-style: italic; 38 | } 39 | 40 | blockquote p:before { 41 | content: "\201C"; 42 | } 43 | 44 | blockquote p:after { 45 | content: "\201D"; 46 | } 47 | 48 | aside > h3 { 49 | font-weight: bold; 50 | } 51 | 52 | p + .offer { 53 | color: red; 54 | } 55 | 56 | input[type="text"], input[type="email"] { 57 | border: none; 58 | } 59 | 60 | input[type="submit"][class="button"] { 61 | font-size: 1em; 62 | } 63 | 64 | input[type="submit"][class="button"]:hover { 65 | background-color: #d4326d; 66 | } 67 | 68 | a:link { 69 | text-decoration: underline; 70 | } 71 | 72 | a:hover { 73 | text-decoration: none; 74 | } 75 | 76 | a:visited { 77 | color: black; 78 | } 79 | 80 | a:active { 81 | color: red; 82 | } 83 | 84 | a:focus { 85 | outline-color: black; 86 | outline-style: dotted; 87 | outline-width: 1px; 88 | } 89 | 90 | #content p:first-of-type:first-letter { 91 | font-size: 4em; 92 | font-weight: bold; 93 | } 94 | 95 | #newsletter { 96 | color: white; 97 | background-color: #00ACDF; 98 | } 99 | 100 | #footer { 101 | background-color: #ccc; 102 | background-image: url("../images/bg-footer.jpg"); 103 | } 104 | 105 | .showcase .button:hover { 106 | background-color: #00ACDF; 107 | } 108 | 109 | #content { 110 | width: 65%; 111 | } 112 | -------------------------------------------------------------------------------- /website (ch09-02)/vertical-align-property-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | 46 | 47 | 48 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Baseline)

49 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Middle)

50 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Sub)

51 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Super)

52 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Text-Top)

53 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Text-Bottom)

54 | 55 |

Text-Top vs Top

56 | 57 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Text-Top)

58 | 59 |

Latest Blog PostCSS3 Foundations: Styling the Modern Web (Top)

60 | 61 | -------------------------------------------------------------------------------- /website (ch05-01)/css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | For use with CSS3 Foundations: Styling the Modern Web 4 | CSS3 Foundations Book: www.wiley.com/go/treehouse/css3foundations 5 | 6 | Project Files: 05-01 7 | 8 | */ 9 | 10 | @import url("reset.css"); 11 | 12 | body { 13 | background-color: #f5f5f5; 14 | background-image: url("../images/bg-body.jpg"); 15 | font-size: 62.5%; 16 | margin: 0 auto; 17 | max-width: 960px; 18 | } 19 | 20 | #header, #main, #footer { 21 | font-size: 1.6em; /* inherited value (10px) x 1.6em = 16px */ 22 | } 23 | 24 | h1, h2, h3, h4 { 25 | font-weight: bold; 26 | } 27 | 28 | #main { 29 | background-color: white; 30 | background-color: rgba(255, 255, 255, 0.6); 31 | border: #ccc solid 1px; 32 | box-shadow: 0 3px 8px 0 #ccc; 33 | } 34 | 35 | .button { 36 | background-color: hotpink; 37 | color: white; 38 | border-radius: 8px; 39 | border: 2px solid white; 40 | } 41 | 42 | blockquote p { 43 | font-style: italic; 44 | } 45 | 46 | blockquote p:before { 47 | content: "\201C"; 48 | } 49 | 50 | blockquote p:after { 51 | content: "\201D"; 52 | } 53 | 54 | aside > h3 { 55 | font-weight: bold; 56 | } 57 | 58 | p + .offer { 59 | color: red; 60 | } 61 | 62 | input[type="text"], input[type="email"] { 63 | border: none; 64 | box-shadow: -3px 3px 2px 0 #ccc inset; 65 | } 66 | 67 | input[type="submit"][class="button"] { 68 | font-size: 1em; 69 | } 70 | 71 | input[type="submit"][class="button"]:hover { 72 | background-color: #d4326d; 73 | } 74 | 75 | a:link { 76 | text-decoration: underline; 77 | } 78 | 79 | a:hover { 80 | text-decoration: none; 81 | } 82 | 83 | a:visited { 84 | color: black; 85 | } 86 | 87 | a:active { 88 | color: red; 89 | } 90 | 91 | a:focus { 92 | outline-color: black; 93 | outline-style: dotted; 94 | outline-width: 1px; 95 | } 96 | 97 | #content p:first-of-type:first-letter { 98 | font-size: 4em; 99 | font-weight: bold; 100 | } 101 | 102 | #newsletter { 103 | color: white; 104 | background-color: #00ACDF; 105 | border-radius: 8px; 106 | border: rgba(0,0,0,0.1) solid 5px; 107 | } 108 | 109 | #footer { 110 | background-color: #ccc; 111 | background-image: url("../images/bg-footer.jpg"); 112 | border-top: #999 dotted 4px; 113 | -webkit-border-image: url("../images/bdr-footer.png") 4 repeat; 114 | } 115 | 116 | .showcase .button:hover { 117 | background-color: #00ACDF; 118 | } 119 | 120 | #content { 121 | width: 65%; 122 | } 123 | 124 | #header nav > ul { 125 | border-radius: 20px; 126 | border: #ccc solid 1px; 127 | } 128 | 129 | .showcase { 130 | box-shadow: 0 -3px 8px 0 #ccc; 131 | } -------------------------------------------------------------------------------- /website (ch11-02)/list-style-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | Cool Shoes & Socks 16 | 57 | 58 | 59 | 62 | 65 | 68 | 71 | 74 | 77 | 80 | 83 | 86 | 89 | 92 | 95 | 98 | 99 | -------------------------------------------------------------------------------- /website (ch05-02)/css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | For use with CSS3 Foundations: Styling the Modern Web 4 | CSS3 Foundations Book: www.wiley.com/go/treehouse/css3foundations 5 | 6 | Project Files: 05-02 7 | 8 | */ 9 | 10 | @import url("reset.css"); 11 | 12 | body { 13 | background-color: #f5f5f5; 14 | background-image: url("../images/bg-body.jpg"); 15 | font-size: 62.5%; 16 | margin: 0 auto; 17 | max-width: 960px; 18 | } 19 | 20 | #header, #main, #footer { 21 | font-size: 1.6em; /* inherited value (10px) x 1.6em = 16px */ 22 | } 23 | 24 | h1, h2, h3, h4 { 25 | font-weight: bold; 26 | } 27 | 28 | #main { 29 | background-color: white; 30 | background-color: rgba(255, 255, 255, 0.6); 31 | border: #ccc solid 1px; 32 | box-shadow: 0 3px 8px 0 #ccc; 33 | } 34 | 35 | .button { 36 | background-color: hotpink; 37 | color: white; 38 | border-radius: 8px; 39 | border: 2px solid white; 40 | } 41 | 42 | blockquote p { 43 | font-style: italic; 44 | } 45 | 46 | blockquote p:before { 47 | content: "\201C"; 48 | } 49 | 50 | blockquote p:after { 51 | content: "\201D"; 52 | } 53 | 54 | aside > h3 { 55 | font-weight: bold; 56 | } 57 | 58 | p + .offer { 59 | color: red; 60 | } 61 | 62 | input[type="text"], input[type="email"] { 63 | border: none; 64 | box-shadow: -3px 3px 2px 0 #ccc inset; 65 | } 66 | 67 | input[type="submit"][class="button"] { 68 | font-size: 1em; 69 | } 70 | 71 | input[type="submit"][class="button"]:hover { 72 | background-color: #d4326d; 73 | } 74 | 75 | a:link { 76 | text-decoration: underline; 77 | } 78 | 79 | a:hover { 80 | text-decoration: none; 81 | } 82 | 83 | a:visited { 84 | color: black; 85 | } 86 | 87 | a:active { 88 | color: red; 89 | } 90 | 91 | a:focus { 92 | outline-color: black; 93 | outline-style: dotted; 94 | outline-width: 1px; 95 | } 96 | 97 | #content p:first-of-type:first-letter { 98 | font-size: 4em; 99 | font-weight: bold; 100 | } 101 | 102 | #newsletter { 103 | color: white; 104 | border-radius: 8px; 105 | border: rgba(0,0,0,0.1) solid 5px; 106 | background: url("../images/icon-newsletter.png") no-repeat 91% 2%, url("../images/bg-newsletter.png") repeat 0 #00ACDF; 107 | padding: 6%; 108 | } 109 | 110 | #footer { 111 | background: #ccc url("../images/bg-footer.jpg"); 112 | border-top: #999 dotted 4px; 113 | -webkit-border-image: url("../images/bdr-footer.png") 4 repeat; 114 | } 115 | 116 | .showcase .button { 117 | padding: 20px; 118 | background-image: -webkit-linear-gradient(top, #FB3876 0%, #d4326d 100%); 119 | background-image: -moz-linear-gradient(to bottom, #FB3876 0%, #d4326d 100%); 120 | background-image: -o-linear-gradient(to bottom, #FB3876 0%, #d4326d 100%); 121 | background-image: linear-gradient(to bottom, #FB3876 0%, #d4326d 100%); 122 | } 123 | 124 | .showcase .button:hover { 125 | background-color: #00ACDF; 126 | } 127 | 128 | #content { 129 | width: 65%; 130 | } 131 | 132 | #header nav > ul { 133 | border-radius: 20px; 134 | border: #ccc solid 1px; 135 | } 136 | 137 | .showcase { 138 | box-shadow: 0 -3px 8px 0 #ccc; 139 | background: #f5f5f5; 140 | } 141 | 142 | .small-logo a { 143 | background: white url("../images/logo-small.png") no-repeat center; 144 | display: block; 145 | min-height: 11px; 146 | width: 162px; 147 | padding: 5px; 148 | font: 0/0 a; 149 | text-shadow: none; 150 | color: transparent; 151 | } 152 | 153 | #header nav > ul > li { 154 | background: white; 155 | } --------------------------------------------------------------------------------