├── .gitignore ├── README.md ├── chapter-01 ├── after │ ├── index.html │ ├── normalize.css │ ├── reset.css │ ├── sample-image.svg │ └── styles.css └── before │ ├── index.html │ ├── sample-image.svg │ └── styles.css ├── chapter-02 ├── after │ ├── img │ │ ├── image-1.jpg │ │ ├── image-2.jpg │ │ ├── logo.jpg │ │ └── play.jpg │ ├── index.html │ └── styles.css └── before │ ├── img │ ├── image-1.jpg │ ├── image-2.jpg │ ├── logo.jpg │ └── play.jpg │ ├── index.html │ └── styles.css ├── chapter-03 ├── after │ ├── index.html │ └── styles.css └── before │ ├── index.html │ └── styles.css ├── chapter-04 ├── after │ ├── image.jpg │ ├── index.html │ └── styles.css └── before │ ├── image.jpg │ ├── index.html │ └── styles.css ├── chapter-05 ├── after │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── bg-img.jpg │ ├── index.html │ └── styles.css └── before │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── bg-img.jpg │ ├── index.html │ └── styles.css ├── chapter-06 ├── after │ ├── img │ │ └── portrait.jpg │ ├── index.html │ └── styles.css └── before │ ├── img │ └── portrait.jpg │ ├── index.html │ └── styles.css ├── chapter-07 ├── README.md ├── after │ ├── img │ │ ├── compass.png │ │ └── dog.svg │ ├── index.html │ └── styles.css ├── before │ ├── img │ │ ├── compass.png │ │ └── dog.svg │ ├── index.html │ └── styles.css ├── package-lock.json └── package.json ├── chapter-08 ├── after │ ├── img │ │ ├── grapes.webp │ │ ├── icons │ │ │ └── remove.svg │ │ ├── pineapple.webp │ │ └── strawberry.webp │ ├── index.html │ ├── script.js │ └── styles.css └── before │ ├── img │ ├── grapes.webp │ ├── icons │ │ └── remove.svg │ ├── pineapple.webp │ └── strawberry.webp │ ├── index.html │ ├── script.js │ └── styles.css ├── chapter-09 ├── after │ ├── bg.jpeg │ ├── card-type.svg │ ├── chip.svg │ ├── fonts │ │ ├── open-sans-800.woff │ │ ├── open-sans-800.woff2 │ │ ├── open-sans-italic-regular.woff │ │ ├── open-sans-italic-regular.woff2 │ │ ├── open-sans-regular.woff │ │ ├── open-sans-regular.woff2 │ │ ├── open-sans-variable-italic.woff2 │ │ ├── open-sans-variable.ttf │ │ └── open-sans-variable.woff2 │ ├── index.html │ ├── logo.svg │ └── style.css └── before │ ├── bg.jpeg │ ├── card-type.svg │ ├── chip.svg │ ├── fonts │ ├── open-sans-800.woff │ ├── open-sans-800.woff2 │ ├── open-sans-italic-regular.woff │ ├── open-sans-italic-regular.woff2 │ ├── open-sans-regular.woff │ ├── open-sans-regular.woff2 │ ├── open-sans-variable-italic.woff2 │ ├── open-sans-variable.ttf │ └── open-sans-variable.woff2 │ ├── index.html │ ├── logo.svg │ └── style.css ├── chapter-10 ├── after │ ├── img │ │ ├── email.svg │ │ ├── error.svg │ │ ├── illustration.jpeg │ │ ├── illustration.jpg │ │ ├── message.svg │ │ ├── name.svg │ │ ├── reason.svg │ │ └── subscriber.svg │ ├── index.html │ ├── script.js │ └── styles.css └── before │ ├── img │ ├── email.svg │ ├── error.svg │ ├── illustration.jpeg │ ├── illustration.jpg │ ├── message.svg │ ├── name.svg │ ├── reason.svg │ └── subscriber.svg │ ├── index.html │ ├── script.js │ └── styles.css ├── chapter-11 ├── after │ ├── icons │ │ ├── email.svg │ │ ├── facebook.svg │ │ ├── linkedIn.svg │ │ ├── share.svg │ │ └── twitter.svg │ ├── index.html │ ├── scripts.js │ └── styles.css └── before │ ├── icons │ ├── email.svg │ ├── facebook.svg │ ├── linkedIn.svg │ ├── share.svg │ └── twitter.svg │ ├── index.html │ ├── scripts.js │ └── styles.css └── chapter-12 ├── .gitignore ├── after ├── index.html ├── styles.css ├── styles.css.map └── styles.scss ├── before ├── index.html └── styles.scss ├── images ├── blue-print.jpg ├── crane.jpg └── wrong-way.jpg ├── package-lock.json ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/README.md -------------------------------------------------------------------------------- /chapter-01/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/after/index.html -------------------------------------------------------------------------------- /chapter-01/after/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/after/normalize.css -------------------------------------------------------------------------------- /chapter-01/after/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/after/reset.css -------------------------------------------------------------------------------- /chapter-01/after/sample-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/after/sample-image.svg -------------------------------------------------------------------------------- /chapter-01/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/after/styles.css -------------------------------------------------------------------------------- /chapter-01/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/before/index.html -------------------------------------------------------------------------------- /chapter-01/before/sample-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-01/before/sample-image.svg -------------------------------------------------------------------------------- /chapter-01/before/styles.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chapter-02/after/img/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/after/img/image-1.jpg -------------------------------------------------------------------------------- /chapter-02/after/img/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/after/img/image-2.jpg -------------------------------------------------------------------------------- /chapter-02/after/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/after/img/logo.jpg -------------------------------------------------------------------------------- /chapter-02/after/img/play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/after/img/play.jpg -------------------------------------------------------------------------------- /chapter-02/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/after/index.html -------------------------------------------------------------------------------- /chapter-02/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/after/styles.css -------------------------------------------------------------------------------- /chapter-02/before/img/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/before/img/image-1.jpg -------------------------------------------------------------------------------- /chapter-02/before/img/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/before/img/image-2.jpg -------------------------------------------------------------------------------- /chapter-02/before/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/before/img/logo.jpg -------------------------------------------------------------------------------- /chapter-02/before/img/play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/before/img/play.jpg -------------------------------------------------------------------------------- /chapter-02/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/before/index.html -------------------------------------------------------------------------------- /chapter-02/before/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-02/before/styles.css -------------------------------------------------------------------------------- /chapter-03/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-03/after/index.html -------------------------------------------------------------------------------- /chapter-03/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-03/after/styles.css -------------------------------------------------------------------------------- /chapter-03/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-03/before/index.html -------------------------------------------------------------------------------- /chapter-03/before/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-03/before/styles.css -------------------------------------------------------------------------------- /chapter-04/after/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-04/after/image.jpg -------------------------------------------------------------------------------- /chapter-04/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-04/after/index.html -------------------------------------------------------------------------------- /chapter-04/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-04/after/styles.css -------------------------------------------------------------------------------- /chapter-04/before/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-04/before/image.jpg -------------------------------------------------------------------------------- /chapter-04/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-04/before/index.html -------------------------------------------------------------------------------- /chapter-04/before/styles.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chapter-05/after/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/1.jpg -------------------------------------------------------------------------------- /chapter-05/after/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/2.jpg -------------------------------------------------------------------------------- /chapter-05/after/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/3.jpg -------------------------------------------------------------------------------- /chapter-05/after/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/4.jpg -------------------------------------------------------------------------------- /chapter-05/after/bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/bg-img.jpg -------------------------------------------------------------------------------- /chapter-05/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/index.html -------------------------------------------------------------------------------- /chapter-05/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/after/styles.css -------------------------------------------------------------------------------- /chapter-05/before/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/before/1.jpg -------------------------------------------------------------------------------- /chapter-05/before/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/before/2.jpg -------------------------------------------------------------------------------- /chapter-05/before/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/before/3.jpg -------------------------------------------------------------------------------- /chapter-05/before/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/before/4.jpg -------------------------------------------------------------------------------- /chapter-05/before/bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/before/bg-img.jpg -------------------------------------------------------------------------------- /chapter-05/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-05/before/index.html -------------------------------------------------------------------------------- /chapter-05/before/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/after/img/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-06/after/img/portrait.jpg -------------------------------------------------------------------------------- /chapter-06/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-06/after/index.html -------------------------------------------------------------------------------- /chapter-06/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-06/after/styles.css -------------------------------------------------------------------------------- /chapter-06/before/img/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-06/before/img/portrait.jpg -------------------------------------------------------------------------------- /chapter-06/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-06/before/index.html -------------------------------------------------------------------------------- /chapter-06/before/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/README.md -------------------------------------------------------------------------------- /chapter-07/after/img/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/after/img/compass.png -------------------------------------------------------------------------------- /chapter-07/after/img/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/after/img/dog.svg -------------------------------------------------------------------------------- /chapter-07/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/after/index.html -------------------------------------------------------------------------------- /chapter-07/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/after/styles.css -------------------------------------------------------------------------------- /chapter-07/before/img/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/before/img/compass.png -------------------------------------------------------------------------------- /chapter-07/before/img/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/before/img/dog.svg -------------------------------------------------------------------------------- /chapter-07/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/before/index.html -------------------------------------------------------------------------------- /chapter-07/before/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/before/styles.css -------------------------------------------------------------------------------- /chapter-07/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/package-lock.json -------------------------------------------------------------------------------- /chapter-07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-07/package.json -------------------------------------------------------------------------------- /chapter-08/after/img/grapes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/img/grapes.webp -------------------------------------------------------------------------------- /chapter-08/after/img/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/img/icons/remove.svg -------------------------------------------------------------------------------- /chapter-08/after/img/pineapple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/img/pineapple.webp -------------------------------------------------------------------------------- /chapter-08/after/img/strawberry.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/img/strawberry.webp -------------------------------------------------------------------------------- /chapter-08/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/index.html -------------------------------------------------------------------------------- /chapter-08/after/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/script.js -------------------------------------------------------------------------------- /chapter-08/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/after/styles.css -------------------------------------------------------------------------------- /chapter-08/before/img/grapes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/before/img/grapes.webp -------------------------------------------------------------------------------- /chapter-08/before/img/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/before/img/icons/remove.svg -------------------------------------------------------------------------------- /chapter-08/before/img/pineapple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/before/img/pineapple.webp -------------------------------------------------------------------------------- /chapter-08/before/img/strawberry.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/before/img/strawberry.webp -------------------------------------------------------------------------------- /chapter-08/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/before/index.html -------------------------------------------------------------------------------- /chapter-08/before/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-08/before/script.js -------------------------------------------------------------------------------- /chapter-08/before/styles.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chapter-09/after/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/bg.jpeg -------------------------------------------------------------------------------- /chapter-09/after/card-type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/card-type.svg -------------------------------------------------------------------------------- /chapter-09/after/chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/chip.svg -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-800.woff -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-800.woff2 -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-italic-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-italic-regular.woff -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-italic-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-italic-regular.woff2 -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-regular.woff -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-regular.woff2 -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-variable-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-variable-italic.woff2 -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-variable.ttf -------------------------------------------------------------------------------- /chapter-09/after/fonts/open-sans-variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/fonts/open-sans-variable.woff2 -------------------------------------------------------------------------------- /chapter-09/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/index.html -------------------------------------------------------------------------------- /chapter-09/after/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/logo.svg -------------------------------------------------------------------------------- /chapter-09/after/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/after/style.css -------------------------------------------------------------------------------- /chapter-09/before/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/bg.jpeg -------------------------------------------------------------------------------- /chapter-09/before/card-type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/card-type.svg -------------------------------------------------------------------------------- /chapter-09/before/chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/chip.svg -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-800.woff -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-800.woff2 -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-italic-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-italic-regular.woff -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-italic-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-italic-regular.woff2 -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-regular.woff -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-regular.woff2 -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-variable-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-variable-italic.woff2 -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-variable.ttf -------------------------------------------------------------------------------- /chapter-09/before/fonts/open-sans-variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/fonts/open-sans-variable.woff2 -------------------------------------------------------------------------------- /chapter-09/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/index.html -------------------------------------------------------------------------------- /chapter-09/before/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-09/before/logo.svg -------------------------------------------------------------------------------- /chapter-09/before/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-10/after/img/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/email.svg -------------------------------------------------------------------------------- /chapter-10/after/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/error.svg -------------------------------------------------------------------------------- /chapter-10/after/img/illustration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/illustration.jpeg -------------------------------------------------------------------------------- /chapter-10/after/img/illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/illustration.jpg -------------------------------------------------------------------------------- /chapter-10/after/img/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/message.svg -------------------------------------------------------------------------------- /chapter-10/after/img/name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/name.svg -------------------------------------------------------------------------------- /chapter-10/after/img/reason.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/reason.svg -------------------------------------------------------------------------------- /chapter-10/after/img/subscriber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/img/subscriber.svg -------------------------------------------------------------------------------- /chapter-10/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/index.html -------------------------------------------------------------------------------- /chapter-10/after/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/script.js -------------------------------------------------------------------------------- /chapter-10/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/after/styles.css -------------------------------------------------------------------------------- /chapter-10/before/img/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/email.svg -------------------------------------------------------------------------------- /chapter-10/before/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/error.svg -------------------------------------------------------------------------------- /chapter-10/before/img/illustration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/illustration.jpeg -------------------------------------------------------------------------------- /chapter-10/before/img/illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/illustration.jpg -------------------------------------------------------------------------------- /chapter-10/before/img/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/message.svg -------------------------------------------------------------------------------- /chapter-10/before/img/name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/name.svg -------------------------------------------------------------------------------- /chapter-10/before/img/reason.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/reason.svg -------------------------------------------------------------------------------- /chapter-10/before/img/subscriber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/img/subscriber.svg -------------------------------------------------------------------------------- /chapter-10/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/index.html -------------------------------------------------------------------------------- /chapter-10/before/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/script.js -------------------------------------------------------------------------------- /chapter-10/before/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-10/before/styles.css -------------------------------------------------------------------------------- /chapter-11/after/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/icons/email.svg -------------------------------------------------------------------------------- /chapter-11/after/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/icons/facebook.svg -------------------------------------------------------------------------------- /chapter-11/after/icons/linkedIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/icons/linkedIn.svg -------------------------------------------------------------------------------- /chapter-11/after/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/icons/share.svg -------------------------------------------------------------------------------- /chapter-11/after/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/icons/twitter.svg -------------------------------------------------------------------------------- /chapter-11/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/index.html -------------------------------------------------------------------------------- /chapter-11/after/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/scripts.js -------------------------------------------------------------------------------- /chapter-11/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/after/styles.css -------------------------------------------------------------------------------- /chapter-11/before/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/icons/email.svg -------------------------------------------------------------------------------- /chapter-11/before/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/icons/facebook.svg -------------------------------------------------------------------------------- /chapter-11/before/icons/linkedIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/icons/linkedIn.svg -------------------------------------------------------------------------------- /chapter-11/before/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/icons/share.svg -------------------------------------------------------------------------------- /chapter-11/before/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/icons/twitter.svg -------------------------------------------------------------------------------- /chapter-11/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/index.html -------------------------------------------------------------------------------- /chapter-11/before/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/scripts.js -------------------------------------------------------------------------------- /chapter-11/before/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-11/before/styles.css -------------------------------------------------------------------------------- /chapter-12/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/.gitignore -------------------------------------------------------------------------------- /chapter-12/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/after/index.html -------------------------------------------------------------------------------- /chapter-12/after/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/after/styles.css -------------------------------------------------------------------------------- /chapter-12/after/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/after/styles.css.map -------------------------------------------------------------------------------- /chapter-12/after/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/after/styles.scss -------------------------------------------------------------------------------- /chapter-12/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/before/index.html -------------------------------------------------------------------------------- /chapter-12/before/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/before/styles.scss -------------------------------------------------------------------------------- /chapter-12/images/blue-print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/images/blue-print.jpg -------------------------------------------------------------------------------- /chapter-12/images/crane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/images/crane.jpg -------------------------------------------------------------------------------- /chapter-12/images/wrong-way.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/images/wrong-way.jpg -------------------------------------------------------------------------------- /chapter-12/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/package-lock.json -------------------------------------------------------------------------------- /chapter-12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/package.json -------------------------------------------------------------------------------- /chapter-12/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelgearon/Tiny-CSS-Projects/HEAD/chapter-12/readme.md --------------------------------------------------------------------------------