Delete this line and add your form.
15 |├── .gitignore ├── week-3 ├── 25-shirt-size │ ├── styles.css │ ├── index.html │ └── readme.md ├── 29-combined-skills │ ├── styles.css │ ├── contact.html │ ├── index.html │ ├── about.html │ └── readme.md ├── 28-git-conflict │ ├── styles.css │ ├── index.html │ └── readme.md ├── 19-search │ ├── index.html │ └── readme.md ├── 21-buttons │ ├── readme.md │ └── index.html ├── 20-labels │ ├── index.html │ └── readme.md ├── 23-comments │ ├── readme.md │ └── index.html ├── 24-dietary │ ├── index.html │ └── readme.md ├── 26-checkout-groups │ ├── readme.md │ └── index.html ├── 22-checkout │ ├── readme.md │ └── index.html └── 27-attributes │ ├── readme.md │ └── index.html ├── .vscode ├── settings.json └── extensions.json ├── week-1 ├── 6-css-properties │ ├── styles.css │ ├── readme.md │ └── index.html ├── 5-css-selectors │ ├── message-backgrounds.css │ ├── readme.md │ └── index.html ├── 8-advanced-selectors │ ├── styles.css │ ├── readme.md │ └── index.html ├── 3-semantic-html │ ├── html.jpg │ ├── readme.md │ └── index.html ├── 9-git-branch │ ├── styles.css │ ├── index.html │ └── readme.md ├── 7-css-box │ ├── styles.css │ ├── readme.md │ └── index.html ├── 4-links-scripts │ ├── js │ │ └── convertUrls.js │ ├── readme.md │ ├── index.html │ └── css │ │ └── missing-styles.css ├── 1-parent-child │ ├── readme.md │ └── index.html └── 2-html-attributes │ ├── readme.md │ └── index.html ├── week-2 ├── 11-flexbox │ ├── flexbox.css │ ├── readme.md │ └── index.html ├── 10-media-queries │ ├── columns.css │ ├── readme.md │ └── index.html ├── 17-nav-menu │ ├── styles.css │ ├── readme.md │ └── index.html ├── 13-align-items │ ├── flexbox.css │ ├── readme.md │ └── index.html ├── 14-order │ ├── flexbox.css │ ├── readme.md │ └── index.html ├── 15-align-self │ ├── flexbox.css │ ├── readme.md │ └── index.html ├── 16-more-flexbox │ ├── flexbox.css │ ├── readme.md │ └── index.html ├── 18-git-merge │ ├── styles.css │ ├── index.html │ └── readme.md └── 12-justify-content │ ├── flexbox.css │ ├── readme.md │ └── index.html ├── css ├── result.css ├── week1-conflicting-styles.css ├── message-css-selectors.css ├── week1-pagination.css ├── message.css ├── message-child-selectors.css ├── week2-media-queries.css ├── week2.css ├── week2-nav-menu.css ├── week1.css ├── week3-forms.css ├── combined-skills.css └── normalize.css ├── images ├── 7 │ └── countries.png ├── 8 │ └── solution.png ├── 9 │ └── github-branches.png ├── 11 │ ├── example-row.png │ ├── solution-1.png │ ├── solution-2.png │ ├── solution-3.png │ └── example-column.png ├── 12 │ ├── solution-1.png │ ├── solution-2.png │ ├── solution-3.png │ ├── solution-4.png │ ├── example-space.png │ └── example-space-column.png ├── 13 │ ├── solution-1.png │ ├── solution-2.png │ ├── solution-3.png │ ├── solution-4.png │ ├── example-align-row.png │ └── example-align-column.png ├── 14 │ ├── solution-1.png │ ├── solution-2.png │ ├── solution-3.png │ └── googling-flexbox.png ├── 15 │ ├── example.png │ ├── solution-1.png │ ├── solution-2.png │ ├── solution-3.png │ └── solution-4.png ├── 16 │ ├── solution-1.png │ ├── solution-2.png │ ├── solution-3.png │ ├── solution-4.png │ └── solution-5.png ├── 17 │ └── solution.gif ├── 18 │ ├── pull-request-0.png │ ├── pull-request-1.png │ ├── pull-request-2.png │ └── pull-request-3.png ├── 22 │ ├── shirts.jpg │ └── solution.png ├── 23 │ └── solution.png ├── 24 │ ├── solution-1.png │ └── solution-2.png ├── 25 │ ├── solution-1.png │ └── solution-2.png ├── 26 │ └── solution.png ├── 27 │ ├── solution-delivery.png │ └── solution-required.gif ├── 3-main.png ├── 29-hero.jpg ├── 29-item-1.jpg ├── 29-item-2.jpg ├── 29-item-3.jpg ├── 3-header.png ├── fork-clone.png ├── fork-editor.png ├── fork-start.png ├── sample-logo.png ├── fork-copy-url.png ├── 29-solution-hero.png ├── 29-solution-text.png ├── fork-open-readme.gif ├── 29-initial-nav-menu.png ├── 29-solution-email.png ├── 29-solution-header.png ├── 29-solution-heart.png ├── 29-solution-label.gif ├── 29-solution-radio.png ├── 29-solution-views.png ├── fork-user-account.png ├── 29-solution-nav-menu.png ├── 29-solution-required.gif └── search.svg ├── .prettierrc.js ├── package.json ├── js └── 3-result.js └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /week-3/25-shirt-size/styles.css: -------------------------------------------------------------------------------- 1 | /* Add your CSS below */ 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /week-1/6-css-properties/styles.css: -------------------------------------------------------------------------------- 1 | /* Add your CSS code below */ 2 | -------------------------------------------------------------------------------- /week-2/11-flexbox/flexbox.css: -------------------------------------------------------------------------------- 1 | /* Add your own CSS code below */ 2 | -------------------------------------------------------------------------------- /week-2/10-media-queries/columns.css: -------------------------------------------------------------------------------- 1 | /* Add your own CSS code below */ 2 | -------------------------------------------------------------------------------- /week-3/29-combined-skills/styles.css: -------------------------------------------------------------------------------- 1 | /* Add your own CSS code below */ 2 | -------------------------------------------------------------------------------- /week-1/5-css-selectors/message-backgrounds.css: -------------------------------------------------------------------------------- 1 | /* Add your CSS code below */ 2 | -------------------------------------------------------------------------------- /week-2/17-nav-menu/styles.css: -------------------------------------------------------------------------------- 1 | /* Write your media queries and flexbox CSS below */ 2 | -------------------------------------------------------------------------------- /week-1/8-advanced-selectors/styles.css: -------------------------------------------------------------------------------- 1 | /* Try different box model properties below */ 2 | -------------------------------------------------------------------------------- /css/result.css: -------------------------------------------------------------------------------- 1 | .result { 2 | padding: 1rem; 3 | border-top: 1px solid rgba(0, 0, 0, 0.2); 4 | } 5 | -------------------------------------------------------------------------------- /images/3-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/3-main.png -------------------------------------------------------------------------------- /images/22/shirts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/22/shirts.jpg -------------------------------------------------------------------------------- /images/29-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-hero.jpg -------------------------------------------------------------------------------- /images/29-item-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-item-1.jpg -------------------------------------------------------------------------------- /images/29-item-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-item-2.jpg -------------------------------------------------------------------------------- /images/29-item-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-item-3.jpg -------------------------------------------------------------------------------- /images/3-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/3-header.png -------------------------------------------------------------------------------- /images/15/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/15/example.png -------------------------------------------------------------------------------- /images/17/solution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/17/solution.gif -------------------------------------------------------------------------------- /images/22/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/22/solution.png -------------------------------------------------------------------------------- /images/23/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/23/solution.png -------------------------------------------------------------------------------- /images/26/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/26/solution.png -------------------------------------------------------------------------------- /images/7/countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/7/countries.png -------------------------------------------------------------------------------- /images/8/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/8/solution.png -------------------------------------------------------------------------------- /images/fork-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/fork-clone.png -------------------------------------------------------------------------------- /images/fork-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/fork-editor.png -------------------------------------------------------------------------------- /images/fork-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/fork-start.png -------------------------------------------------------------------------------- /images/sample-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/sample-logo.png -------------------------------------------------------------------------------- /week-2/13-align-items/flexbox.css: -------------------------------------------------------------------------------- 1 | .countries { 2 | display: flex; 3 | } 4 | /* Add your own CSS code below */ 5 | -------------------------------------------------------------------------------- /week-2/14-order/flexbox.css: -------------------------------------------------------------------------------- 1 | .countries { 2 | display: flex; 3 | } 4 | 5 | /* Add your own CSS code below */ 6 | -------------------------------------------------------------------------------- /images/11/example-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/11/example-row.png -------------------------------------------------------------------------------- /images/11/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/11/solution-1.png -------------------------------------------------------------------------------- /images/11/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/11/solution-2.png -------------------------------------------------------------------------------- /images/11/solution-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/11/solution-3.png -------------------------------------------------------------------------------- /images/12/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/12/solution-1.png -------------------------------------------------------------------------------- /images/12/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/12/solution-2.png -------------------------------------------------------------------------------- /images/12/solution-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/12/solution-3.png -------------------------------------------------------------------------------- /images/12/solution-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/12/solution-4.png -------------------------------------------------------------------------------- /images/13/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/13/solution-1.png -------------------------------------------------------------------------------- /images/13/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/13/solution-2.png -------------------------------------------------------------------------------- /images/13/solution-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/13/solution-3.png -------------------------------------------------------------------------------- /images/13/solution-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/13/solution-4.png -------------------------------------------------------------------------------- /images/14/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/14/solution-1.png -------------------------------------------------------------------------------- /images/14/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/14/solution-2.png -------------------------------------------------------------------------------- /images/14/solution-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/14/solution-3.png -------------------------------------------------------------------------------- /images/15/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/15/solution-1.png -------------------------------------------------------------------------------- /images/15/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/15/solution-2.png -------------------------------------------------------------------------------- /images/15/solution-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/15/solution-3.png -------------------------------------------------------------------------------- /images/15/solution-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/15/solution-4.png -------------------------------------------------------------------------------- /images/16/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/16/solution-1.png -------------------------------------------------------------------------------- /images/16/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/16/solution-2.png -------------------------------------------------------------------------------- /images/16/solution-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/16/solution-3.png -------------------------------------------------------------------------------- /images/16/solution-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/16/solution-4.png -------------------------------------------------------------------------------- /images/16/solution-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/16/solution-5.png -------------------------------------------------------------------------------- /images/24/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/24/solution-1.png -------------------------------------------------------------------------------- /images/24/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/24/solution-2.png -------------------------------------------------------------------------------- /images/25/solution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/25/solution-1.png -------------------------------------------------------------------------------- /images/25/solution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/25/solution-2.png -------------------------------------------------------------------------------- /images/fork-copy-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/fork-copy-url.png -------------------------------------------------------------------------------- /week-2/15-align-self/flexbox.css: -------------------------------------------------------------------------------- 1 | .countries { 2 | display: flex; 3 | } 4 | 5 | /* Add your own CSS code below */ 6 | -------------------------------------------------------------------------------- /week-2/16-more-flexbox/flexbox.css: -------------------------------------------------------------------------------- 1 | .countries { 2 | display: flex; 3 | } 4 | 5 | /* Add your own CSS code below */ 6 | -------------------------------------------------------------------------------- /images/12/example-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/12/example-space.png -------------------------------------------------------------------------------- /images/29-solution-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-hero.png -------------------------------------------------------------------------------- /images/29-solution-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-text.png -------------------------------------------------------------------------------- /images/fork-open-readme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/fork-open-readme.gif -------------------------------------------------------------------------------- /images/11/example-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/11/example-column.png -------------------------------------------------------------------------------- /images/14/googling-flexbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/14/googling-flexbox.png -------------------------------------------------------------------------------- /images/18/pull-request-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/18/pull-request-0.png -------------------------------------------------------------------------------- /images/18/pull-request-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/18/pull-request-1.png -------------------------------------------------------------------------------- /images/18/pull-request-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/18/pull-request-2.png -------------------------------------------------------------------------------- /images/18/pull-request-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/18/pull-request-3.png -------------------------------------------------------------------------------- /images/29-initial-nav-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-initial-nav-menu.png -------------------------------------------------------------------------------- /images/29-solution-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-email.png -------------------------------------------------------------------------------- /images/29-solution-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-header.png -------------------------------------------------------------------------------- /images/29-solution-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-heart.png -------------------------------------------------------------------------------- /images/29-solution-label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-label.gif -------------------------------------------------------------------------------- /images/29-solution-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-radio.png -------------------------------------------------------------------------------- /images/29-solution-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-views.png -------------------------------------------------------------------------------- /images/9/github-branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/9/github-branches.png -------------------------------------------------------------------------------- /images/fork-user-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/fork-user-account.png -------------------------------------------------------------------------------- /images/13/example-align-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/13/example-align-row.png -------------------------------------------------------------------------------- /images/27/solution-delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/27/solution-delivery.png -------------------------------------------------------------------------------- /images/27/solution-required.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/27/solution-required.gif -------------------------------------------------------------------------------- /images/29-solution-nav-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-nav-menu.png -------------------------------------------------------------------------------- /images/29-solution-required.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/29-solution-required.gif -------------------------------------------------------------------------------- /week-1/3-semantic-html/html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/week-1/3-semantic-html/html.jpg -------------------------------------------------------------------------------- /css/week1-conflicting-styles.css: -------------------------------------------------------------------------------- 1 | /** Conflicting styles that require advanced CSS selectors to override */ 2 | p { 3 | color: #000; 4 | } 5 | -------------------------------------------------------------------------------- /images/12/example-space-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/12/example-space-column.png -------------------------------------------------------------------------------- /images/13/example-align-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/html-css-git-exercises/HEAD/images/13/example-align-column.png -------------------------------------------------------------------------------- /week-1/9-git-branch/styles.css: -------------------------------------------------------------------------------- 1 | /* Add your own CSS code below */ 2 | .link { 3 | color: #4491db; 4 | font-weight: 700; 5 | text-decoration: none; 6 | } 7 | -------------------------------------------------------------------------------- /week-2/18-git-merge/styles.css: -------------------------------------------------------------------------------- 1 | /* Add your own CSS code below */ 2 | .link { 3 | color: #4491db; 4 | font-weight: 700; 5 | text-decoration: none; 6 | } 7 | -------------------------------------------------------------------------------- /week-3/28-git-conflict/styles.css: -------------------------------------------------------------------------------- 1 | /* Add your own CSS code below */ 2 | .link { 3 | color: orangered; 4 | font-weight: 700; 5 | text-decoration: none; 6 | } 7 | -------------------------------------------------------------------------------- /week-1/7-css-box/styles.css: -------------------------------------------------------------------------------- 1 | /* Try different box model properties below */ 2 | .pages__page { 3 | border: 1px solid #4491db; 4 | border-radius: 4px; 5 | background: #fff; 6 | } 7 | -------------------------------------------------------------------------------- /week-2/16-more-flexbox/readme.md: -------------------------------------------------------------------------------- 1 | # Flexbox Practice 2 | 3 | You know what to do by now. Use any of the flexbox properties you have learned so far to solve as many of the exercises as you can. 4 | -------------------------------------------------------------------------------- /week-2/12-justify-content/flexbox.css: -------------------------------------------------------------------------------- 1 | .countries { 2 | display: flex; 3 | } 4 | 5 | .countries--second .country { 6 | padding: 0.5em; 7 | } 8 | 9 | /* Add your own CSS code below */ 10 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 100, 3 | tabWidth: 2, 4 | semicolons: true, 5 | singleQuote: false, 6 | trailingComma: false, 7 | bracketSpacing: true, 8 | jsxBracketSameLine: true, 9 | arrowParens: "always" 10 | }; 11 | -------------------------------------------------------------------------------- /css/message-css-selectors.css: -------------------------------------------------------------------------------- 1 | /* Message styling that targets all child elements of .messages */ 2 | .messages > * { 3 | margin: 1rem 3rem 1rem 1rem; 4 | padding: 0.5rem; 5 | font-size: 14px; 6 | line-height: 1.8em; 7 | border-radius: 2px; 8 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); 9 | } 10 | -------------------------------------------------------------------------------- /css/week1-pagination.css: -------------------------------------------------------------------------------- 1 | .countries { 2 | margin: 0; 3 | padding: 1rem; 4 | list-style: none; 5 | border-bottom: 1px solid #bbb; 6 | } 7 | 8 | .country { 9 | margin: 1px 0; 10 | background: #fff; 11 | border: 1px solid rgba(0, 0, 0, 0.2); 12 | } 13 | 14 | .pages { 15 | margin-left: 0.5rem; 16 | } 17 | 18 | .pages__page { 19 | text-decoration: none; 20 | } 21 | 22 | .pages__showing { 23 | display: inline-block; 24 | padding: 1rem; 25 | } 26 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. 3 | // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp 4 | 5 | // List of extensions which should be recommended for users of this workspace. 6 | "recommendations": ["esbenp.prettier-vscode"], 7 | // List of extensions recommended by VS Code that should not be recommended for users of this workspace. 8 | "unwantedRecommendations": [] 9 | } 10 | -------------------------------------------------------------------------------- /images/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week-3/19-search/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Delete this line and add your form.
15 |