diff --git a/Week 1.1 - HTML/1. Build a Form/index.html b/Week 1.1 - HTML/1. Build a Form/index.html index 50432a8b..b4c28aa3 100644 --- a/Week 1.1 - HTML/1. Build a Form/index.html +++ b/Week 1.1 - HTML/1. Build a Form/index.html @@ -8,6 +8,17 @@ - +
+

Patrick's Bootcamp Login

+ +
+ +
+ +
+ +
+ +
- \ No newline at end of file + diff --git a/Week 1.1 - HTML/2. Create a Responsive Image - Resolution/index.html b/Week 1.1 - HTML/2. Create a Responsive Image - Resolution/index.html index a132ac2a..9e7626ad 100644 --- a/Week 1.1 - HTML/2. Create a Responsive Image - Resolution/index.html +++ b/Week 1.1 - HTML/2. Create a Responsive Image - Resolution/index.html @@ -25,6 +25,13 @@ - + + + + + + A grey rectangle that is responsive. + - \ No newline at end of file + diff --git a/Week 1.1 - HTML/3. Create a Reponsive Image - Aspect Ratio/index.html b/Week 1.1 - HTML/3. Create a Reponsive Image - Aspect Ratio/index.html index d8bb518c..dbc932f3 100644 --- a/Week 1.1 - HTML/3. Create a Reponsive Image - Aspect Ratio/index.html +++ b/Week 1.1 - HTML/3. Create a Reponsive Image - Aspect Ratio/index.html @@ -25,6 +25,10 @@ - + + + + Another grey rectangle that is responsive. + - \ No newline at end of file + diff --git a/Week 1.1 - HTML/4. Mock Up a Design/index.html b/Week 1.1 - HTML/4. Mock Up a Design/index.html index a7252a6f..52106408 100644 --- a/Week 1.1 - HTML/4. Mock Up a Design/index.html +++ b/Week 1.1 - HTML/4. Mock Up a Design/index.html @@ -8,6 +8,45 @@ + +
+

Phase 4:

+

Destination Thrive

+

Objective: Create omni-channel synergy

+

+ This is the time to fully leverage your hard work and thrive. During this phase, attention... Lorem Ipsum time. + Si potes legere haec verba, tu es mirabilis. Ego scio nimis paucos populos, qui Latinam intellegere postest. etc etc. +

+
+
+

Key Focus

+ +
+

Time

+ Small icon of a clock +

approx. 24 months and beyond

+
+ - \ No newline at end of file + diff --git a/Week 1.2 - CSS/1. Selectors - Attributes/index.html b/Week 1.2 - CSS/1. Selectors - Attributes/index.html index 3d9c05b8..e8e69bae 100644 --- a/Week 1.2 - CSS/1. Selectors - Attributes/index.html +++ b/Week 1.2 - CSS/1. Selectors - Attributes/index.html @@ -8,8 +8,9 @@ @@ -23,4 +24,4 @@ - \ No newline at end of file + diff --git a/Week 1.2 - CSS/2. Selectors - Children/index.html b/Week 1.2 - CSS/2. Selectors - Children/index.html index 7ff366db..4f6be8d8 100644 --- a/Week 1.2 - CSS/2. Selectors - Children/index.html +++ b/Week 1.2 - CSS/2. Selectors - Children/index.html @@ -9,7 +9,9 @@ - \ No newline at end of file + diff --git a/Week 1.2 - CSS/3. Selectors - Siblings/index.html b/Week 1.2 - CSS/3. Selectors - Siblings/index.html index b6086a75..1dab66a0 100644 --- a/Week 1.2 - CSS/3. Selectors - Siblings/index.html +++ b/Week 1.2 - CSS/3. Selectors - Siblings/index.html @@ -16,7 +16,7 @@ - - - - + + + + - \ No newline at end of file + diff --git a/Week 1.2 - CSS/5. Transitions/index.html b/Week 1.2 - CSS/5. Transitions/index.html index 4fa3bd71..38db69b1 100644 --- a/Week 1.2 - CSS/5. Transitions/index.html +++ b/Week 1.2 - CSS/5. Transitions/index.html @@ -22,10 +22,15 @@ width: 100px; height: 100px; background-color: rebeccapurple; + transition: 160ms; + } + .box:hover { + transform: scale(2); + transition: 200ms; }
- \ No newline at end of file + diff --git a/Week 1.2 - CSS/6. Tricks - Click Passthrough/index.html b/Week 1.2 - CSS/6. Tricks - Click Passthrough/index.html index 769c1a18..6ad18b3d 100644 --- a/Week 1.2 - CSS/6. Tricks - Click Passthrough/index.html +++ b/Week 1.2 - CSS/6. Tricks - Click Passthrough/index.html @@ -29,6 +29,7 @@ width: 100%; height: 100%; background-image: linear-gradient(to bottom, transparent, black); + pointer-events: none; } @@ -40,4 +41,4 @@ - \ No newline at end of file + diff --git a/Week 1.3 - JavaScript/1. Filter/index.html b/Week 1.3 - JavaScript/1. Filter/index.html index e74982a2..607d615e 100644 --- a/Week 1.3 - JavaScript/1. Filter/index.html +++ b/Week 1.3 - JavaScript/1. Filter/index.html @@ -13,7 +13,7 @@ // Custom Code BEGIN // Modify the code in this block however you need to get the desired ending array. // You must store your new array in the `endingArray` variable for it to log out properly. - let endingArray; + let endingArray = startingArray.filter(x => (x % 2 === 0)); // Custom Code END @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/Week 1.3 - JavaScript/2. Map/index.html b/Week 1.3 - JavaScript/2. Map/index.html index 72fa39ee..a9f890da 100644 --- a/Week 1.3 - JavaScript/2. Map/index.html +++ b/Week 1.3 - JavaScript/2. Map/index.html @@ -13,7 +13,7 @@ // Custom Code BEGIN // Modify the code in this block however you need to get the desired ending array. // You must store your new array in the `endingArray` variable for it to log out properly. - let endingArray; + let endingArray = startingArray.map(value => ({"name": value})); // Custom Code END @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/Week 1.3 - JavaScript/3. Objects as a Map/index.html b/Week 1.3 - JavaScript/3. Objects as a Map/index.html index 3004949a..523d42c2 100644 --- a/Week 1.3 - JavaScript/3. Objects as a Map/index.html +++ b/Week 1.3 - JavaScript/3. Objects as a Map/index.html @@ -13,21 +13,14 @@ // Rewrite this function to replace the if/else logic with a map lookup. function getInformation(key) { - let rtn; - - if (key === 'date') { - rtn = 'October 6, 1986'; - } else if (key === 'time') { - rtn = '21:13 PM'; - } else if (key === 'mood') { - rtn = 'Powerful, spirited...'; - } else { - rtn = 'Error: Invalid option selected...'; - } - - return rtn; + const mapThing = new Map([ + ["date", 'October 6, 1986'], + ["time", '21:13 PM'], + ["mood", 'Powerful, spirited...'] + ]); + return (mapThing.has(key) ? mapThing.get(key) : "Error: Invalid option selected..."); } - \ No newline at end of file + diff --git a/Week 1.3 - JavaScript/4. Event Listeners/index.html b/Week 1.3 - JavaScript/4. Event Listeners/index.html index d284e48f..837d7755 100644 --- a/Week 1.3 - JavaScript/4. Event Listeners/index.html +++ b/Week 1.3 - JavaScript/4. Event Listeners/index.html @@ -20,7 +20,9 @@

0

} // Add your code here to make clicking the button run the increment function + const buttonToClick = document.querySelector('[data-action="increment-counter"]'); + buttonToClick.addEventListener("click", increment); - \ No newline at end of file + diff --git a/Week 1.3 - JavaScript/5. DOM Manipulation/index.html b/Week 1.3 - JavaScript/5. DOM Manipulation/index.html index ba0e04f2..61ed0eda 100644 --- a/Week 1.3 - JavaScript/5. DOM Manipulation/index.html +++ b/Week 1.3 - JavaScript/5. DOM Manipulation/index.html @@ -24,7 +24,9 @@

More Jeff Goldblum

- \ No newline at end of file + diff --git a/Week 1.3 - JavaScript/Data Fetching/index.html b/Week 1.3 - JavaScript/Data Fetching/index.html index c1da8137..cc6098b6 100644 --- a/Week 1.3 - JavaScript/Data Fetching/index.html +++ b/Week 1.3 - JavaScript/Data Fetching/index.html @@ -10,8 +10,19 @@ - \ No newline at end of file + diff --git a/Week 2.1 - CSS Grid/1. Responsive Grids/index.html b/Week 2.1 - CSS Grid/1. Responsive Grids/index.html index 2d612e63..a2f18057 100644 --- a/Week 2.1 - CSS Grid/1. Responsive Grids/index.html +++ b/Week 2.1 - CSS Grid/1. Responsive Grids/index.html @@ -29,6 +29,8 @@ @@ -84,4 +86,4 @@

Lorem Ipsum Dolor

- \ No newline at end of file + diff --git a/Week 2.1 - CSS Grid/2. Placing Items/index.html b/Week 2.1 - CSS Grid/2. Placing Items/index.html index fcd7781b..3c9f0de6 100644 --- a/Week 2.1 - CSS Grid/2. Placing Items/index.html +++ b/Week 2.1 - CSS Grid/2. Placing Items/index.html @@ -19,6 +19,9 @@
@@ -29,4 +32,4 @@
- \ No newline at end of file + diff --git a/Week 2.1 - CSS Grid/3. Placing Items - Advanced/index.html b/Week 2.1 - CSS Grid/3. Placing Items - Advanced/index.html index 0161e9be..a3508173 100644 --- a/Week 2.1 - CSS Grid/3. Placing Items - Advanced/index.html +++ b/Week 2.1 - CSS Grid/3. Placing Items - Advanced/index.html @@ -49,6 +49,31 @@
@@ -109,4 +134,4 @@
- \ No newline at end of file + diff --git a/Week 2.2 - Flexbox/1. Centering/index.html b/Week 2.2 - Flexbox/1. Centering/index.html index 5283be49..f94834f6 100644 --- a/Week 2.2 - Flexbox/1. Centering/index.html +++ b/Week 2.2 - Flexbox/1. Centering/index.html @@ -21,10 +21,13 @@ width: 100%; height: 600px; border: 2px solid thistle; - border-radius: 4px;; + border-radius: 4px; background-color: whitesmoke; /* Add to your code here to center the box within the container */ + align-items: center; + display: flex; + justify-content: center; } @@ -33,4 +36,4 @@ - \ No newline at end of file + diff --git a/Week 2.2 - Flexbox/2. Placing Items/index.html b/Week 2.2 - Flexbox/2. Placing Items/index.html index 986e0ee4..b41bb423 100644 --- a/Week 2.2 - Flexbox/2. Placing Items/index.html +++ b/Week 2.2 - Flexbox/2. Placing Items/index.html @@ -28,6 +28,9 @@ The `.logo` and `.links` should also be center aligned with each other. */ + display: flex; + align-items: center; + justify-content: space-between; } @@ -41,4 +44,4 @@ - \ No newline at end of file + diff --git a/Week 2.2 - Flexbox/3. Placing Items - Advanced/index.html b/Week 2.2 - Flexbox/3. Placing Items - Advanced/index.html index 9ff4f7e7..9c665f9f 100644 --- a/Week 2.2 - Flexbox/3. Placing Items - Advanced/index.html +++ b/Week 2.2 - Flexbox/3. Placing Items - Advanced/index.html @@ -25,6 +25,13 @@
@@ -55,4 +62,4 @@

Lorem Ipsum Dolor

- \ No newline at end of file + diff --git a/Week 2.2 - Flexbox/4. Flexing/index.html b/Week 2.2 - Flexbox/4. Flexing/index.html index 443de97c..0652c1d7 100644 --- a/Week 2.2 - Flexbox/4. Flexing/index.html +++ b/Week 2.2 - Flexbox/4. Flexing/index.html @@ -39,15 +39,20 @@ @@ -58,4 +63,4 @@ - \ No newline at end of file +