Boston Cream Pie
16 |
Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
18 | 19 |├── README.md ├── branding ├── Pie in the Sky logo.png ├── clouds.png ├── color schemes.png ├── flickr creative commons │ ├── apple-pie.jpg │ ├── boston-creme.jpg │ ├── cherry-alamode.jpg │ ├── cherry-pie.jpg │ ├── coconut-creme.jpg │ ├── copyright.rtf │ ├── gone-pie.jpg │ ├── keylime-pie.jpg │ ├── lemon-meringue.jpg │ ├── merilee.jpg │ ├── mincemeat.jpg │ ├── mini-pies.jpg │ ├── mom-pie.jpg │ ├── peace-pie.jpg │ ├── peach-pie.jpg │ ├── pi-day.jpg │ ├── pie-coffee.jpg │ ├── pie-slice-buffet.jpg │ ├── pumpkin-pie.jpg │ └── whole-pie-buffet.jpg ├── fonts.pdf ├── sitecomp.png └── web copy.docx ├── day-1-flexbox ├── 1-intro-floats │ ├── begin │ │ ├── css │ │ │ ├── floats.css │ │ │ └── normalize.css │ │ ├── floats.html │ │ └── img │ │ │ ├── boston-cream.jpg │ │ │ ├── coconut-cream.jpg │ │ │ ├── keylime-pie.jpg │ │ │ └── pumpkin-pie.jpg │ ├── end │ │ ├── css │ │ │ ├── floats.css │ │ │ └── normalize.css │ │ ├── floats.html │ │ └── img │ │ │ ├── boston-cream.jpg │ │ │ ├── coconut-cream.jpg │ │ │ ├── keylime-pie.jpg │ │ │ └── pumpkin-pie.jpg │ └── instructions.txt ├── 2-flexbox-intro │ ├── Flexbox Properties.txt │ ├── boxes.html │ ├── css │ │ └── boxes.css │ ├── flexbox notes.txt │ └── instructions.txt ├── 3-flexbox-grid │ ├── begin │ │ ├── css │ │ │ ├── flexbox.css │ │ │ └── normalize.css │ │ ├── flexbox.html │ │ └── img │ │ │ ├── boston-cream.jpg │ │ │ ├── coconut-cream.jpg │ │ │ ├── keylime-pie.jpg │ │ │ └── pumpkin-pie.jpg │ ├── bootstrap-4.0.0-beta-dist.zip │ ├── end │ │ ├── css │ │ │ ├── flexbox.css │ │ │ └── normalize.css │ │ ├── flexbox.html │ │ └── img │ │ │ ├── boston-cream.jpg │ │ │ ├── coconut-cream.jpg │ │ │ ├── keylime-pie.jpg │ │ │ └── pumpkin-pie.jpg │ ├── flexboxgrid-6.3.1.zip │ └── instructions.txt ├── 4-pie-flexbox │ ├── begin │ │ ├── css │ │ │ └── styles.css │ │ ├── history.html │ │ └── img │ │ │ ├── clouds.png │ │ │ ├── fb5.png │ │ │ ├── insta4.png │ │ │ ├── logo.png │ │ │ ├── merilee.jpg │ │ │ ├── pi-day.jpg │ │ │ ├── pin2.png │ │ │ ├── scallop.png │ │ │ ├── sitecomp_02.png │ │ │ ├── tumblr3.png │ │ │ └── twitter1.png │ ├── end │ │ ├── css │ │ │ └── styles.css │ │ ├── history.html │ │ └── img │ │ │ ├── clouds.png │ │ │ ├── fb5.png │ │ │ ├── insta4.png │ │ │ ├── logo.png │ │ │ ├── merilee.jpg │ │ │ ├── pi-day.jpg │ │ │ ├── pin2.png │ │ │ ├── scallop.png │ │ │ ├── sitecomp_02.png │ │ │ ├── tumblr3.png │ │ │ └── twitter1.png │ └── instructions.txt ├── 5-image-gallery │ ├── begin │ │ ├── gallery.css │ │ ├── gallery.html │ │ └── gallery │ │ │ ├── apple-pie.jpg │ │ │ ├── boston-creme.jpg │ │ │ ├── cherry-alamode.jpg │ │ │ ├── cherry-pie.jpg │ │ │ ├── coconut-creme.jpg │ │ │ ├── gone-pie.jpg │ │ │ ├── keylime-pie.jpg │ │ │ ├── lemon-meringue.jpg │ │ │ ├── mincemeat.jpg │ │ │ ├── mini-pies.jpg │ │ │ ├── mom-pie.jpg │ │ │ ├── peace-pie.jpg │ │ │ ├── peach-pie.jpg │ │ │ ├── pie-coffee.jpg │ │ │ ├── pie-slice-buffet.jpg │ │ │ ├── pumpkin-pie.jpg │ │ │ └── whole-pie-buffet.jpg │ ├── end │ │ ├── gallery-2.css │ │ ├── gallery.css │ │ ├── gallery.html │ │ └── gallery │ │ │ ├── apple-pie.jpg │ │ │ ├── boston-creme.jpg │ │ │ ├── cherry-alamode.jpg │ │ │ ├── cherry-pie.jpg │ │ │ ├── coconut-creme.jpg │ │ │ ├── gone-pie.jpg │ │ │ ├── keylime-pie.jpg │ │ │ ├── lemon-meringue.jpg │ │ │ ├── mincemeat.jpg │ │ │ ├── mini-pies.jpg │ │ │ ├── mom-pie.jpg │ │ │ ├── peace-pie.jpg │ │ │ ├── peach-pie.jpg │ │ │ ├── pie-coffee.jpg │ │ │ ├── pie-slice-buffet.jpg │ │ │ ├── pumpkin-pie.jpg │ │ │ └── whole-pie-buffet.jpg │ └── instructions.txt ├── 6-responsive-images │ ├── begin │ │ ├── image-exercise.html │ │ └── img │ │ │ ├── mom-1200.jpg │ │ │ ├── mom-300.jpg │ │ │ ├── mom-767.jpg │ │ │ ├── peace-pie-150.jpg │ │ │ ├── peace-pie-500.jpg │ │ │ └── peace-pie-original.jpg │ ├── end │ │ ├── image-exercise.html │ │ ├── img │ │ │ ├── mom-1200.jpg │ │ │ ├── mom-300.jpg │ │ │ ├── mom-767.jpg │ │ │ ├── peace-pie-150.jpg │ │ │ ├── peace-pie-500.jpg │ │ │ └── peace-pie-original.jpg │ │ ├── picturefill.min.js │ │ └── style.css │ └── instructions.txt └── 7-wrapup │ ├── begin │ ├── css │ │ └── styles.css │ ├── history.html │ ├── img │ │ ├── clouds.png │ │ ├── fb5.png │ │ ├── insta4.png │ │ ├── logo.png │ │ ├── merilee.jpg │ │ ├── pi-day.jpg │ │ ├── pin2.png │ │ ├── scallop.png │ │ ├── sitecomp_02.png │ │ ├── tumblr3.png │ │ └── twitter1.png │ └── merilee-original.jpg │ ├── end │ ├── css │ │ └── styles.css │ ├── gallery.html │ ├── gallery │ │ ├── apple-pie.jpg │ │ ├── boston-creme.jpg │ │ ├── cherry-alamode.jpg │ │ ├── cherry-pie.jpg │ │ ├── coconut-creme.jpg │ │ ├── gone-pie.jpg │ │ ├── keylime-pie.jpg │ │ ├── lemon-meringue.jpg │ │ ├── mincemeat.jpg │ │ ├── mini-pies.jpg │ │ ├── mom-pie.jpg │ │ ├── peace-pie.jpg │ │ ├── peach-pie.jpg │ │ ├── pie-coffee.jpg │ │ ├── pie-slice-buffet.jpg │ │ ├── pumpkin-pie.jpg │ │ └── whole-pie-buffet.jpg │ ├── history.html │ ├── img │ │ ├── clouds.png │ │ ├── fb5.png │ │ ├── header-1200.jpg │ │ ├── header-850.jpg │ │ ├── insta4.png │ │ ├── logo.png │ │ ├── merilee-175.jpg │ │ ├── merilee-250.jpg │ │ ├── merilee-400.jpg │ │ ├── pi-day.jpg │ │ ├── pin2.png │ │ ├── scallop.png │ │ ├── sitecomp_02.png │ │ ├── tumblr3.png │ │ └── twitter1.png │ ├── index.html │ └── picturefill.min.js │ └── instructions.txt ├── day-2-grid ├── 08-grid-intro │ ├── Grid Properties.txt │ ├── basic.css │ ├── grid.css │ ├── grid.html │ ├── img │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ ├── instructions.txt │ ├── reordering.css │ └── reordering.html ├── 09-mondrian-painting-demo │ ├── begin │ │ ├── index.html │ │ └── painting.css │ ├── end │ │ ├── index.html │ │ └── painting.css │ ├── instructions.txt │ ├── painting-reverse.png │ └── painting.png ├── 10-mondrian-you-try-it │ ├── begin │ │ ├── mondrian2.png │ │ ├── youtryit.css │ │ └── youtryit.html │ ├── end │ │ ├── mondrian2.png │ │ ├── youtryit.css │ │ └── youtryit.html │ └── instructions.txt ├── 11-grid-grid │ ├── begin │ │ ├── css │ │ │ ├── grid.css │ │ │ └── normalize.css │ │ ├── grid.html │ │ └── img │ │ │ ├── boston-cream.jpg │ │ │ ├── coconut-cream.jpg │ │ │ ├── keylime-pie.jpg │ │ │ └── pumpkin-pie.jpg │ ├── end │ │ ├── css │ │ │ ├── grid.css │ │ │ └── normalize.css │ │ ├── grid.html │ │ └── img │ │ │ ├── boston-cream.jpg │ │ │ ├── coconut-cream.jpg │ │ │ ├── keylime-pie.jpg │ │ │ └── pumpkin-pie.jpg │ └── instructions.txt ├── 12-grid-area │ ├── begin │ │ ├── grid-area.css │ │ └── grid-area.html │ ├── end │ │ ├── grid-area.css │ │ └── grid-area.html │ └── instructions.txt ├── 13-grid-nesting │ ├── begin │ │ ├── nesting.css │ │ └── nesting.html │ ├── end │ │ ├── nesting.css │ │ └── nesting.html │ └── instructions.txt ├── 14-grid-offsets │ ├── begin │ │ ├── offsets.css │ │ └── offsets.html │ ├── end │ │ ├── offsets.css │ │ └── offsets.html │ └── instructions.txt ├── 15-pie-grid-you-try-it │ ├── begin │ │ ├── css │ │ │ └── styles.css │ │ ├── history.html │ │ └── img │ │ │ ├── clouds.png │ │ │ ├── fb5.png │ │ │ ├── insta4.png │ │ │ ├── logo.png │ │ │ ├── merilee.jpg │ │ │ ├── pi-day.jpg │ │ │ ├── pin2.png │ │ │ ├── scallop.png │ │ │ ├── sitecomp_02.png │ │ │ ├── tumblr3.png │ │ │ └── twitter1.png │ ├── end │ │ ├── css │ │ │ └── styles.css │ │ ├── history.html │ │ └── img │ │ │ ├── clouds.png │ │ │ ├── fb5.png │ │ │ ├── insta4.png │ │ │ ├── logo.png │ │ │ ├── merilee.jpg │ │ │ ├── pi-day.jpg │ │ │ ├── pin2.png │ │ │ ├── scallop.png │ │ │ ├── sitecomp_02.png │ │ │ ├── tumblr3.png │ │ │ └── twitter1.png │ └── instructions.txt ├── 16-grid-fallbacks │ ├── fallback url.txt │ └── instructions.txt ├── 17-grid-and-flexbox │ ├── begin │ │ ├── flexbox gallery │ │ │ ├── gallery-2.css │ │ │ ├── gallery.css │ │ │ ├── gallery.html │ │ │ └── gallery │ │ │ │ ├── apple-pie.jpg │ │ │ │ ├── boston-creme.jpg │ │ │ │ ├── cherry-alamode.jpg │ │ │ │ ├── cherry-pie.jpg │ │ │ │ ├── coconut-creme.jpg │ │ │ │ ├── gone-pie.jpg │ │ │ │ ├── keylime-pie.jpg │ │ │ │ ├── lemon-meringue.jpg │ │ │ │ ├── mincemeat.jpg │ │ │ │ ├── mini-pies.jpg │ │ │ │ ├── mom-pie.jpg │ │ │ │ ├── peace-pie.jpg │ │ │ │ ├── peach-pie.jpg │ │ │ │ ├── pie-coffee.jpg │ │ │ │ ├── pie-slice-buffet.jpg │ │ │ │ ├── pumpkin-pie.jpg │ │ │ │ └── whole-pie-buffet.jpg │ │ └── pie in the sky as grid │ │ │ ├── css │ │ │ └── styles.css │ │ │ ├── history.html │ │ │ └── img │ │ │ ├── clouds.png │ │ │ ├── fb5.png │ │ │ ├── insta4.png │ │ │ ├── logo.png │ │ │ ├── merilee.jpg │ │ │ ├── pi-day.jpg │ │ │ ├── pin2.png │ │ │ ├── scallop.png │ │ │ ├── sitecomp_02.png │ │ │ ├── tumblr3.png │ │ │ └── twitter1.png │ ├── end │ │ ├── css │ │ │ └── styles.css │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── apple-pie.jpg │ │ │ ├── boston-creme.jpg │ │ │ ├── cherry-alamode.jpg │ │ │ ├── cherry-pie.jpg │ │ │ ├── coconut-creme.jpg │ │ │ ├── gone-pie.jpg │ │ │ ├── keylime-pie.jpg │ │ │ ├── lemon-meringue.jpg │ │ │ ├── mincemeat.jpg │ │ │ ├── mini-pies.jpg │ │ │ ├── mom-pie.jpg │ │ │ ├── peace-pie.jpg │ │ │ ├── peach-pie.jpg │ │ │ ├── pie-coffee.jpg │ │ │ ├── pie-slice-buffet.jpg │ │ │ ├── pumpkin-pie.jpg │ │ │ └── whole-pie-buffet.jpg │ │ ├── history.html │ │ └── img │ │ │ ├── clouds.png │ │ │ ├── fb5.png │ │ │ ├── insta4.png │ │ │ ├── logo.png │ │ │ ├── merilee.jpg │ │ │ ├── pi-day.jpg │ │ │ ├── pin2.png │ │ │ ├── scallop.png │ │ │ ├── sitecomp_02.png │ │ │ ├── tumblr3.png │ │ │ └── twitter1.png │ └── instructions.txt └── 18-practice │ ├── end │ ├── catering.html │ ├── contact.html │ ├── css │ │ └── styles.css │ ├── gallery.html │ ├── gallery │ │ ├── apple-pie.jpg │ │ ├── boston-creme.jpg │ │ ├── cherry-alamode.jpg │ │ ├── cherry-pie.jpg │ │ ├── coconut-creme.jpg │ │ ├── gone-pie.jpg │ │ ├── keylime-pie.jpg │ │ ├── lemon-meringue.jpg │ │ ├── mincemeat.jpg │ │ ├── mini-pies.jpg │ │ ├── mom-pie.jpg │ │ ├── peace-pie.jpg │ │ ├── peach-pie.jpg │ │ ├── pie-coffee.jpg │ │ ├── pie-slice-buffet.jpg │ │ ├── pumpkin-pie.jpg │ │ └── whole-pie-buffet.jpg │ ├── history.html │ ├── img │ │ ├── clouds.png │ │ ├── fb5.png │ │ ├── header-1200.jpg │ │ ├── header-850.jpg │ │ ├── insta4.png │ │ ├── logo.png │ │ ├── merilee-175.jpg │ │ ├── merilee-250.jpg │ │ ├── merilee-400.jpg │ │ ├── merilee.jpg │ │ ├── pi-day.jpg │ │ ├── pin2.png │ │ ├── scallop.png │ │ ├── sitecomp_02.png │ │ ├── tumblr3.png │ │ └── twitter1.png │ ├── index.html │ └── menu.html │ └── instructions.txt ├── day1.pdf ├── day2.pdf └── resources └── resources.txt /README.md: -------------------------------------------------------------------------------- 1 | # Frontend Masters: CSS Grids and Flexbox in Responsive Web Design workshop files 2 | 3 | Taught October 3-4, 2017, at Frontend Masters 4 | 5 | Course is located here: https://frontendmasters.com/courses/css-grids-flexbox/ 6 | -------------------------------------------------------------------------------- /branding/Pie in the Sky logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/Pie in the Sky logo.png -------------------------------------------------------------------------------- /branding/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/clouds.png -------------------------------------------------------------------------------- /branding/color schemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/color schemes.png -------------------------------------------------------------------------------- /branding/flickr creative commons/apple-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/apple-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/boston-creme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/boston-creme.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/cherry-alamode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/cherry-alamode.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/cherry-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/cherry-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/coconut-creme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/coconut-creme.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/copyright.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1504\cocoasubrtf830 2 | {\fonttbl\f0\fswiss\fcharset0 ArialMT;\f1\fswiss\fcharset0 Helvetica;} 3 | {\colortbl;\red255\green255\blue255;\red26\green26\blue26;\red16\green60\blue192;} 4 | {\*\expandedcolortbl;;\csgenericrgb\c10196\c10196\c10196;\csgenericrgb\c6275\c23529\c75294;} 5 | \margl1440\margr1440\vieww10800\viewh8400\viewkind0 6 | \deftab720 7 | \pard\pardeftab720\partightenfactor0 8 | 9 | \f0\fs26 \cf2 \expnd0\expndtw0\kerning0 10 | All images here are from Flickr under a Creative Commons license:\ 11 | {\field{\*\fldinst{HYPERLINK "https://www.flickr.com/creativecommons/"}}{\fldrslt https://www.flickr.com/creativecommons/}}\ 12 | \ 13 | \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 14 | 15 | \f1\fs24 \cf0 \kerning1\expnd0\expndtw0 Peace Pie https://www.flickr.com/photos/nataliemaynor/2769385618/\ 16 | Pumpkin Pie https://www.flickr.com/photos/carbonnyc/4185675052/\ 17 | Cherry Pie https://www.flickr.com/photos/sbogdanich/14282790114/in/photostream/\ 18 | Apple Pie https://www.flickr.com/photos/53503060@N06/6079924588/\ 19 | Cherry a la Mode https://www.flickr.com/photos/jeffreyww/5190507614/\ 20 | Coconut Creme Pie https://www.flickr.com/photos/notahipster/4345671678/\ 21 | Lemon Merengue https://www.flickr.com/photos/sterlic/7339730520/\ 22 | Boston Creme https://www.flickr.com/photos/geishabot/3398619233/\ 23 | Mincemeat https://www.flickr.com/photos/ayca13/8731640328/\ 24 | Mom Pie https://www.flickr.com/photos/andrewmalone/1728501922/\ 25 | Mini Pies https://www.flickr.com/photos/radarsmum67/11434840655/\ 26 | Pi Day (strawberry rhubarb) https://www.flickr.com/photos/sonstroem/16817426161/\ 27 | Peach Pie https://www.flickr.com/photos/jeffreyww/8232810503/\ 28 | Gone Pie https://www.flickr.com/photos/forthefunofit/6845257928/\ 29 | Key Lime Pie https://www.flickr.com/photos/ralphandjenny/5941648290/\ 30 | Pie Slice Buffet https://www.flickr.com/photos/stevendepolo/15261575816/\ 31 | Whole Pie Buffet https://www.flickr.com/photos/calamity_sal/3782074246/\ 32 | Pie and Coffee https://www.flickr.com/photos/aloha75/8521539857/\ 33 | Baker image: {\field{\*\fldinst{HYPERLINK "https://www.flickr.com/photos/tinfoilraccoon/3473313171"}}{\fldrslt 34 | \f0\fs26 \cf3 \expnd0\expndtw0\kerning0 35 | \ul \ulc3 https://www.flickr.com/photos/tinfoilraccoon/3473313171}}} -------------------------------------------------------------------------------- /branding/flickr creative commons/gone-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/gone-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/keylime-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/keylime-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/lemon-meringue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/lemon-meringue.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/merilee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/merilee.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/mincemeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/mincemeat.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/mini-pies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/mini-pies.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/mom-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/mom-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/peace-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/peace-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/peach-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/peach-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/pi-day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/pi-day.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/pie-coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/pie-coffee.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/pie-slice-buffet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/pie-slice-buffet.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/pumpkin-pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/pumpkin-pie.jpg -------------------------------------------------------------------------------- /branding/flickr creative commons/whole-pie-buffet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/flickr creative commons/whole-pie-buffet.jpg -------------------------------------------------------------------------------- /branding/fonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/fonts.pdf -------------------------------------------------------------------------------- /branding/sitecomp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/sitecomp.png -------------------------------------------------------------------------------- /branding/web copy.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen4web/fem-layout/75d22b22a0c6c545746ed40f3d00c4e8430a30ea/branding/web copy.docx -------------------------------------------------------------------------------- /day-1-flexbox/1-intro-floats/begin/css/floats.css: -------------------------------------------------------------------------------- 1 | /* Border box declaration 2 | https://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ 3 | html { 4 | box-sizing: border-box; 5 | } 6 | /* inherit border-box on all elements in the universe and before and after 7 | */ 8 | *, 9 | *:before, 10 | *:after { 11 | box-sizing: inherit; 12 | } 13 | 14 | body { 15 | font-family: Arial, Geneva, sans-serif; 16 | } 17 | a { 18 | color: #2772B0; 19 | } 20 | .wrapper { 21 | width: 97%; 22 | max-width: 1200px; 23 | margin: 0 auto; 24 | float: none; 25 | background-color: #fff; 26 | } 27 | 28 | div img { 29 | width: 100%; 30 | max-width: 225px; 31 | } 32 | 33 | /* grid system -- mobile first! */ 34 | 35 | 36 | /* Mobile Landscape Screen Sizes */ 37 | @media only screen and (min-width: 480px) { 38 | 39 | } 40 | /* Desktop screen Sizes */ 41 | @media only screen and (min-width: 768px) { 42 | 43 | } -------------------------------------------------------------------------------- /day-1-flexbox/1-intro-floats/begin/floats.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
18 | 19 |Coconut cream pie will take you to an island escape. Especially delicious in winter.
24 | 25 |Key lime pie is based on the tiny key limes from Florida. These limes are less sour than conventional limes.
30 | 31 |A staple of every Thanksgiving dinner table, pumpkin pie is delicious any time of year.
36 | 37 |Key lime pie is based on the tiny key limes from Florida. These limes are less sour than conventional limes.
45 | 46 |A staple of every Thanksgiving dinner table, pumpkin pie is delicious any time of year.
51 | 52 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
61 | 62 |Coconut cream pie will take you to an island escape. Especially delicious in winter.
67 | 68 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
76 | 77 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
18 | 19 |Coconut cream pie will take you to an island escape. Especially delicious in winter.
24 | 25 |Key lime pie is based on the tiny key limes from Florida. These limes are less sour than conventional limes.
30 | 31 |A staple of every Thanksgiving dinner table, pumpkin pie is delicious any time of year.
36 | 37 |Key lime pie is based on the tiny key limes from Florida. These limes are less sour than conventional limes.
45 | 46 |A staple of every Thanksgiving dinner table, pumpkin pie is delicious any time of year.
51 | 52 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
60 | 61 |Coconut cream pie will take you to an island escape. Especially delicious in winter.
66 | 67 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
75 | 76 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
18 | 19 |Coconut cream pie will take you to an island escape. Especially delicious in winter.
24 | 25 |Key lime pie is based on the tiny key limes from Florida. These limes are less sour than conventional limes.
30 | 31 |A staple of every Thanksgiving dinner table, pumpkin pie is delicious any time of year.
36 | 37 |Key lime pie is based on the tiny key limes from Florida. These limes are less sour than conventional limes.
45 | 46 |A staple of every Thanksgiving dinner table, pumpkin pie is delicious any time of year.
51 | 52 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
61 | 62 |Coconut cream pie will take you to an island escape. Especially delicious in winter.
67 | 68 |Boston's famous dessert, a combination of yellow cake, vanilla pudding, and chocolate frosting.
76 | 77 |Sometimes great things come from humble beginnings. For Merilee Wilbur, that beginning came in the form of a request from her 8-year-old son, Jake, who needed a snack to take to his chess club meeting. Merilee flipped through her recipe box and pulled out her grandmother's recipe for Chess Pie. Perfect!
The pie was such a hit with the kids - and their coach - that Merilee started getting requests to bake pies for other occasions: school events, birthdays, even a Pi Day celebration at the local library. Pie in the Sky Bakery was born.
32 | 33 |She got so many orders that her fledgling business soon outgrew her family's kitchen. In 2006, she rented her current location at 34 Main Street, where she and her team of bakers have served up fresh, delicious pies ever since.
34 |Sometimes great things come from humble beginnings. For Merilee Wilbur, that beginning came in the form of a request from her 8-year-old son, Jake, who needed a snack to take to his chess club meeting. Merilee flipped through her recipe box and pulled out her grandmother's recipe for Chess Pie. Perfect!
The pie was such a hit with the kids - and their coach - that Merilee started getting requests to bake pies for other occasions: school events, birthdays, even a Pi Day celebration at the local library. Pie in the Sky Bakery was born.
32 | 33 |She got so many orders that her fledgling business soon outgrew her family's kitchen. In 2006, she rented her current location at 34 Main Street, where she and her team of bakers have served up fresh, delicious pies ever since.
34 |Sometimes great things come from humble beginnings. For Merilee Wilbur, that beginning came in the form of a request from her 8-year-old son, Jake, who needed a snack to take to his chess club meeting. Merilee flipped through her recipe box and pulled out her grandmother's recipe for Chess Pie. Perfect!
The pie was such a hit with the kids - and their coach - that Merilee started getting requests to bake pies for other occasions: school events, birthdays, even a Pi Day celebration at the local library. Pie in the Sky Bakery was born.
32 | 33 |She got so many orders that her fledgling business soon outgrew her family's kitchen. In 2006, she rented her current location at 34 Main Street, where she and her team of bakers have served up fresh, delicious pies ever since.
34 |Sometimes great things come from humble beginnings. For Merilee Wilbur, that beginning came in the form of a request from her 8-year-old son, Jake, who needed a snack to take to his chess club meeting. Merilee flipped through her recipe box and pulled out her grandmother's recipe for Chess Pie. Perfect!
40 | 41 |The pie was such a hit with the kids - and their coach - that Merilee started getting requests to bake pies for other occasions: school events, birthdays, even a Pi Day celebration at the local library. Pie in the Sky Bakery was born.
42 | 43 |She got so many orders that her fledgling business soon outgrew her family's kitchen. In 2006, she rented her current location at 34 Main Street, where she and her team of bakers have served up fresh, delicious pies ever since.
44 |Pie in the Sky Bakery is your source for fresh, home-baked pies for every occasion. Our pies are made with only the freshest fruits and other wholesome fillings. We make our crusts with vegetable shortening and no trans-fats, so you can enjoy high quality and delicious taste in every bite.
36 |41 |44 | 45 |Thank you, Merilee, for all your help in making my daughter's birthday party a success. Her allergies make it difficult to find safe choices for her. You made it so easy! Everyone loved the gluten-free Apple Crumb pie, and of course, the Chess Pie.
42 | Sharon Leroy 43 |
Don't wait to reserve your Mother's Day pie, complete with "Mom" on the crust!
50 | 51 |Join us for a slice of pie, with or without ice cream, and coffee at our Main Street location.
56 | 57 |61 |64 | 65 |We are grateful to Merilee and everyone at Pie in the Sky Bakery for donating 20 pies to Relay for Life. They were delicious and very much appreciated by all.
62 | Darlene Huston, Chairperson 63 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor facere, fugiat nobis consequuntur fugit dolorem molestiae. Rem error dolor veniam quibusdam sapiente, debitis repudiandae cumque in aliquid. Corrupti optio unde, illum impedit ipsum, eveniet aliquam recusandae dolor consectetur, mollitia, culpa aperiam nesciunt quae aut voluptatem modi vero ex dolores. Modi.
19 | 20 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
17 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
18 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
19 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
17 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
18 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
19 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
17 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
18 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
19 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
17 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
18 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
19 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
17 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
18 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
19 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
17 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
18 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?
19 |