├── .gitignore ├── README.md ├── _config.yml ├── calculator ├── index.html ├── script.js └── style.css ├── css-exercises ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── README.md ├── animation │ ├── 01-button-hover │ │ ├── README.md │ │ ├── desired-outcome.gif │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ └── 02-pop-up │ │ ├── README.md │ │ ├── desired-outcome.gif │ │ ├── index.html │ │ ├── script.js │ │ ├── solution │ │ ├── solution.css │ │ ├── solution.html │ │ └── solution.js │ │ └── style.css ├── flex │ ├── 01-flex-center │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 02-flex-header │ │ ├── README.md │ │ ├── desired-outcome-narrow.png │ │ ├── desired-outcome-wide.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 03-flex-header-2 │ │ ├── README.md │ │ ├── desired-outcome.gif │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 04-flex-information │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── images │ │ │ ├── barberry.png │ │ │ ├── chilli.png │ │ │ ├── pepper.png │ │ │ └── saffron.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── images │ │ │ │ ├── barberry.png │ │ │ │ ├── chilli.png │ │ │ │ ├── pepper.png │ │ │ │ └── saffron.png │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 05-flex-modal │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 06-flex-layout │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── solution │ │ │ ├── logo.png │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ └── 07-flex-layout-2 │ │ ├── README.md │ │ ├── desired-outcome-smaller.png │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ ├── solution.css │ │ └── solution.html │ │ └── style.css ├── foundations │ ├── 01-css-methods │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── styles.css │ ├── 02-class-id-selectors │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 03-grouping-selectors │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 04-chaining-selectors │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── pexels-andrea-piacquadio-3777931.jpg │ │ ├── pexels-katho-mutodo-8434791.jpg │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 05-descendant-combinator │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ └── 06-cascade-fix │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ ├── solution.css │ │ └── solution.html │ │ └── style.css ├── grid │ ├── 01-grid-layout-1 │ │ ├── README.md │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ ├── 02-grid-layout-2 │ │ ├── README.md │ │ ├── desired-outcome-narrow.png │ │ ├── desired-outcome-wide.png │ │ ├── index.html │ │ ├── solution │ │ │ ├── solution.css │ │ │ └── solution.html │ │ └── style.css │ └── 03-grid-layout-3 │ │ ├── README.md │ │ ├── desired-outcome-stretched.png │ │ ├── desired-outcome.png │ │ ├── index.html │ │ ├── solution │ │ ├── solution.css │ │ └── solution.html │ │ └── style.css └── margin-and-padding │ ├── 01-margin-and-padding-1 │ ├── README.md │ ├── desired-outcome.png │ ├── index.html │ ├── solution │ │ ├── solution.css │ │ └── solution.html │ └── style.css │ └── 02-margin-and-padding-2 │ ├── README.md │ ├── desired-outcome.png │ ├── index.html │ ├── solution │ ├── solution.css │ └── solution.html │ └── style.css ├── etch-a-sketch ├── index.html ├── palette.png ├── script.js └── style.css ├── javascript-exercises ├── 01_helloWorld │ ├── README.md │ ├── helloWorld.js │ └── helloWorld.spec.js ├── 02_repeatString │ ├── README.md │ ├── repeatString.js │ └── repeatString.spec.js ├── 03_reverseString │ ├── README.md │ ├── reverseString.js │ └── reverseString.spec.js ├── 04_removeFromArray │ ├── README.md │ ├── removeFromArray.js │ └── removeFromArray.spec.js ├── 05_sumAll │ ├── README.md │ ├── sumAll.js │ └── sumAll.spec.js ├── 06_leapYears │ ├── README.md │ ├── leapYears.js │ └── leapYears.spec.js ├── 07_tempConversion │ ├── README.md │ ├── tempConversion.js │ └── tempConversion.spec.js ├── 08_calculator │ ├── README.md │ ├── calculator.js │ └── calculator.spec.js ├── 09_palindromes │ ├── README.md │ ├── palindromes.js │ └── palindromes.spec.js ├── 10_fibonacci │ ├── README.md │ ├── fibonacci.js │ └── fibonacci.spec.js ├── 11_getTheTitles │ ├── README.md │ ├── getTheTitles.js │ └── getTheTitles.spec.js ├── 12_findTheOldest │ ├── README.md │ ├── findTheOldest.js │ └── findTheOldest.spec.js ├── 13_caesar │ ├── README.md │ ├── caesar.js │ └── caesar.spec.js ├── domManipulation │ ├── index.html │ └── script.js ├── pigLatin │ ├── README.md │ ├── pigLatin.js │ └── pigLatin.spec.js └── snakeCase │ ├── README.md │ ├── snakeCase.js │ └── snakeCase.spec.js ├── landing-page ├── credits.html ├── images │ ├── crypto.svg │ ├── exclamation.svg │ ├── guy-typing.jpg │ ├── icon.svg │ ├── loading.svg │ └── security.svg ├── index.html └── style.css ├── logo.png ├── odin-recipes ├── images │ ├── baked-ziti.jpg │ ├── best-hamburger-ever.jpg │ └── fried-egg-sandwiches.jpg ├── index.html └── recipes │ ├── baked-ziti.html │ ├── best-hamburger-ever.html │ └── fried-egg-sandwiches.html └── rock-paper-scissors ├── index.html └── script.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/_config.yml -------------------------------------------------------------------------------- /calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/calculator/index.html -------------------------------------------------------------------------------- /calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/calculator/script.js -------------------------------------------------------------------------------- /calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/calculator/style.css -------------------------------------------------------------------------------- /css-exercises/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /css-exercises/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /css-exercises/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /css-exercises/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore MacOS autogenerated 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /css-exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/README.md -------------------------------------------------------------------------------- /css-exercises/animation/01-button-hover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/01-button-hover/README.md -------------------------------------------------------------------------------- /css-exercises/animation/01-button-hover/desired-outcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/01-button-hover/desired-outcome.gif -------------------------------------------------------------------------------- /css-exercises/animation/01-button-hover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/01-button-hover/index.html -------------------------------------------------------------------------------- /css-exercises/animation/01-button-hover/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/01-button-hover/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/animation/01-button-hover/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/01-button-hover/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/animation/01-button-hover/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/01-button-hover/style.css -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/README.md -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/desired-outcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/desired-outcome.gif -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/index.html -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/script.js -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/solution/solution.js -------------------------------------------------------------------------------- /css-exercises/animation/02-pop-up/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/animation/02-pop-up/style.css -------------------------------------------------------------------------------- /css-exercises/flex/01-flex-center/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/01-flex-center/README.md -------------------------------------------------------------------------------- /css-exercises/flex/01-flex-center/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/01-flex-center/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/flex/01-flex-center/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/01-flex-center/index.html -------------------------------------------------------------------------------- /css-exercises/flex/01-flex-center/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/01-flex-center/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/01-flex-center/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/01-flex-center/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/01-flex-center/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/01-flex-center/style.css -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/README.md -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/desired-outcome-narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/desired-outcome-narrow.png -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/desired-outcome-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/desired-outcome-wide.png -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/index.html -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/02-flex-header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/02-flex-header/style.css -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/README.md -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/desired-outcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/desired-outcome.gif -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/index.html -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/03-flex-header-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/03-flex-header-2/style.css -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/README.md -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/images/barberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/images/barberry.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/images/chilli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/images/chilli.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/images/pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/images/pepper.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/images/saffron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/images/saffron.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/index.html -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/solution/images/barberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/solution/images/barberry.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/solution/images/chilli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/solution/images/chilli.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/solution/images/pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/solution/images/pepper.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/solution/images/saffron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/solution/images/saffron.png -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/04-flex-information/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/04-flex-information/style.css -------------------------------------------------------------------------------- /css-exercises/flex/05-flex-modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/05-flex-modal/README.md -------------------------------------------------------------------------------- /css-exercises/flex/05-flex-modal/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/05-flex-modal/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/flex/05-flex-modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/05-flex-modal/index.html -------------------------------------------------------------------------------- /css-exercises/flex/05-flex-modal/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/05-flex-modal/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/05-flex-modal/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/05-flex-modal/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/05-flex-modal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/05-flex-modal/style.css -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/README.md -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/index.html -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/logo.png -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/solution/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/solution/logo.png -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/06-flex-layout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/06-flex-layout/style.css -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/README.md -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/desired-outcome-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/desired-outcome-smaller.png -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/index.html -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/flex/07-flex-layout-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/flex/07-flex-layout-2/style.css -------------------------------------------------------------------------------- /css-exercises/foundations/01-css-methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/01-css-methods/README.md -------------------------------------------------------------------------------- /css-exercises/foundations/01-css-methods/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/01-css-methods/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/foundations/01-css-methods/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/01-css-methods/index.html -------------------------------------------------------------------------------- /css-exercises/foundations/01-css-methods/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/01-css-methods/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/foundations/01-css-methods/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/01-css-methods/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/foundations/01-css-methods/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/01-css-methods/styles.css -------------------------------------------------------------------------------- /css-exercises/foundations/02-class-id-selectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/02-class-id-selectors/README.md -------------------------------------------------------------------------------- /css-exercises/foundations/02-class-id-selectors/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/02-class-id-selectors/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/foundations/02-class-id-selectors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/02-class-id-selectors/index.html -------------------------------------------------------------------------------- /css-exercises/foundations/02-class-id-selectors/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/02-class-id-selectors/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/foundations/02-class-id-selectors/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/02-class-id-selectors/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/foundations/02-class-id-selectors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/02-class-id-selectors/style.css -------------------------------------------------------------------------------- /css-exercises/foundations/03-grouping-selectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/03-grouping-selectors/README.md -------------------------------------------------------------------------------- /css-exercises/foundations/03-grouping-selectors/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/03-grouping-selectors/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/foundations/03-grouping-selectors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/03-grouping-selectors/index.html -------------------------------------------------------------------------------- /css-exercises/foundations/03-grouping-selectors/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/03-grouping-selectors/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/foundations/03-grouping-selectors/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/03-grouping-selectors/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/foundations/03-grouping-selectors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/03-grouping-selectors/style.css -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/README.md -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/index.html -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/pexels-andrea-piacquadio-3777931.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/pexels-andrea-piacquadio-3777931.jpg -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/pexels-katho-mutodo-8434791.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/pexels-katho-mutodo-8434791.jpg -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/foundations/04-chaining-selectors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/04-chaining-selectors/style.css -------------------------------------------------------------------------------- /css-exercises/foundations/05-descendant-combinator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/05-descendant-combinator/README.md -------------------------------------------------------------------------------- /css-exercises/foundations/05-descendant-combinator/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/05-descendant-combinator/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/foundations/05-descendant-combinator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/05-descendant-combinator/index.html -------------------------------------------------------------------------------- /css-exercises/foundations/05-descendant-combinator/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/05-descendant-combinator/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/foundations/05-descendant-combinator/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/05-descendant-combinator/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/foundations/05-descendant-combinator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/05-descendant-combinator/style.css -------------------------------------------------------------------------------- /css-exercises/foundations/06-cascade-fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/06-cascade-fix/README.md -------------------------------------------------------------------------------- /css-exercises/foundations/06-cascade-fix/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/06-cascade-fix/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/foundations/06-cascade-fix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/06-cascade-fix/index.html -------------------------------------------------------------------------------- /css-exercises/foundations/06-cascade-fix/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/06-cascade-fix/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/foundations/06-cascade-fix/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/06-cascade-fix/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/foundations/06-cascade-fix/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/foundations/06-cascade-fix/style.css -------------------------------------------------------------------------------- /css-exercises/grid/01-grid-layout-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/01-grid-layout-1/README.md -------------------------------------------------------------------------------- /css-exercises/grid/01-grid-layout-1/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/01-grid-layout-1/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/grid/01-grid-layout-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/01-grid-layout-1/index.html -------------------------------------------------------------------------------- /css-exercises/grid/01-grid-layout-1/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/01-grid-layout-1/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/grid/01-grid-layout-1/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/01-grid-layout-1/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/grid/01-grid-layout-1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/01-grid-layout-1/style.css -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/README.md -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/desired-outcome-narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/desired-outcome-narrow.png -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/desired-outcome-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/desired-outcome-wide.png -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/index.html -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/grid/02-grid-layout-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/02-grid-layout-2/style.css -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/README.md -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/desired-outcome-stretched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/desired-outcome-stretched.png -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/index.html -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/grid/03-grid-layout-3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/grid/03-grid-layout-3/style.css -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/01-margin-and-padding-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/01-margin-and-padding-1/README.md -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/01-margin-and-padding-1/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/01-margin-and-padding-1/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/01-margin-and-padding-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/01-margin-and-padding-1/index.html -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/01-margin-and-padding-1/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/01-margin-and-padding-1/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/01-margin-and-padding-1/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/01-margin-and-padding-1/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/01-margin-and-padding-1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/01-margin-and-padding-1/style.css -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/02-margin-and-padding-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/02-margin-and-padding-2/README.md -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/02-margin-and-padding-2/desired-outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/02-margin-and-padding-2/desired-outcome.png -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/02-margin-and-padding-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/02-margin-and-padding-2/index.html -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/02-margin-and-padding-2/solution/solution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/02-margin-and-padding-2/solution/solution.css -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/02-margin-and-padding-2/solution/solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/02-margin-and-padding-2/solution/solution.html -------------------------------------------------------------------------------- /css-exercises/margin-and-padding/02-margin-and-padding-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/css-exercises/margin-and-padding/02-margin-and-padding-2/style.css -------------------------------------------------------------------------------- /etch-a-sketch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/etch-a-sketch/index.html -------------------------------------------------------------------------------- /etch-a-sketch/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/etch-a-sketch/palette.png -------------------------------------------------------------------------------- /etch-a-sketch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/etch-a-sketch/script.js -------------------------------------------------------------------------------- /etch-a-sketch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/etch-a-sketch/style.css -------------------------------------------------------------------------------- /javascript-exercises/01_helloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/01_helloWorld/README.md -------------------------------------------------------------------------------- /javascript-exercises/01_helloWorld/helloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/01_helloWorld/helloWorld.js -------------------------------------------------------------------------------- /javascript-exercises/01_helloWorld/helloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/01_helloWorld/helloWorld.spec.js -------------------------------------------------------------------------------- /javascript-exercises/02_repeatString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/02_repeatString/README.md -------------------------------------------------------------------------------- /javascript-exercises/02_repeatString/repeatString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/02_repeatString/repeatString.js -------------------------------------------------------------------------------- /javascript-exercises/02_repeatString/repeatString.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/02_repeatString/repeatString.spec.js -------------------------------------------------------------------------------- /javascript-exercises/03_reverseString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/03_reverseString/README.md -------------------------------------------------------------------------------- /javascript-exercises/03_reverseString/reverseString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/03_reverseString/reverseString.js -------------------------------------------------------------------------------- /javascript-exercises/03_reverseString/reverseString.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/03_reverseString/reverseString.spec.js -------------------------------------------------------------------------------- /javascript-exercises/04_removeFromArray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/04_removeFromArray/README.md -------------------------------------------------------------------------------- /javascript-exercises/04_removeFromArray/removeFromArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/04_removeFromArray/removeFromArray.js -------------------------------------------------------------------------------- /javascript-exercises/04_removeFromArray/removeFromArray.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/04_removeFromArray/removeFromArray.spec.js -------------------------------------------------------------------------------- /javascript-exercises/05_sumAll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/05_sumAll/README.md -------------------------------------------------------------------------------- /javascript-exercises/05_sumAll/sumAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/05_sumAll/sumAll.js -------------------------------------------------------------------------------- /javascript-exercises/05_sumAll/sumAll.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/05_sumAll/sumAll.spec.js -------------------------------------------------------------------------------- /javascript-exercises/06_leapYears/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/06_leapYears/README.md -------------------------------------------------------------------------------- /javascript-exercises/06_leapYears/leapYears.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/06_leapYears/leapYears.js -------------------------------------------------------------------------------- /javascript-exercises/06_leapYears/leapYears.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/06_leapYears/leapYears.spec.js -------------------------------------------------------------------------------- /javascript-exercises/07_tempConversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/07_tempConversion/README.md -------------------------------------------------------------------------------- /javascript-exercises/07_tempConversion/tempConversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/07_tempConversion/tempConversion.js -------------------------------------------------------------------------------- /javascript-exercises/07_tempConversion/tempConversion.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/07_tempConversion/tempConversion.spec.js -------------------------------------------------------------------------------- /javascript-exercises/08_calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/08_calculator/README.md -------------------------------------------------------------------------------- /javascript-exercises/08_calculator/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/08_calculator/calculator.js -------------------------------------------------------------------------------- /javascript-exercises/08_calculator/calculator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/08_calculator/calculator.spec.js -------------------------------------------------------------------------------- /javascript-exercises/09_palindromes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/09_palindromes/README.md -------------------------------------------------------------------------------- /javascript-exercises/09_palindromes/palindromes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/09_palindromes/palindromes.js -------------------------------------------------------------------------------- /javascript-exercises/09_palindromes/palindromes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/09_palindromes/palindromes.spec.js -------------------------------------------------------------------------------- /javascript-exercises/10_fibonacci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/10_fibonacci/README.md -------------------------------------------------------------------------------- /javascript-exercises/10_fibonacci/fibonacci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/10_fibonacci/fibonacci.js -------------------------------------------------------------------------------- /javascript-exercises/10_fibonacci/fibonacci.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/10_fibonacci/fibonacci.spec.js -------------------------------------------------------------------------------- /javascript-exercises/11_getTheTitles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/11_getTheTitles/README.md -------------------------------------------------------------------------------- /javascript-exercises/11_getTheTitles/getTheTitles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/11_getTheTitles/getTheTitles.js -------------------------------------------------------------------------------- /javascript-exercises/11_getTheTitles/getTheTitles.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/11_getTheTitles/getTheTitles.spec.js -------------------------------------------------------------------------------- /javascript-exercises/12_findTheOldest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/12_findTheOldest/README.md -------------------------------------------------------------------------------- /javascript-exercises/12_findTheOldest/findTheOldest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/12_findTheOldest/findTheOldest.js -------------------------------------------------------------------------------- /javascript-exercises/12_findTheOldest/findTheOldest.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/12_findTheOldest/findTheOldest.spec.js -------------------------------------------------------------------------------- /javascript-exercises/13_caesar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/13_caesar/README.md -------------------------------------------------------------------------------- /javascript-exercises/13_caesar/caesar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/13_caesar/caesar.js -------------------------------------------------------------------------------- /javascript-exercises/13_caesar/caesar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/13_caesar/caesar.spec.js -------------------------------------------------------------------------------- /javascript-exercises/domManipulation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/domManipulation/index.html -------------------------------------------------------------------------------- /javascript-exercises/domManipulation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/domManipulation/script.js -------------------------------------------------------------------------------- /javascript-exercises/pigLatin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/pigLatin/README.md -------------------------------------------------------------------------------- /javascript-exercises/pigLatin/pigLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/pigLatin/pigLatin.js -------------------------------------------------------------------------------- /javascript-exercises/pigLatin/pigLatin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/pigLatin/pigLatin.spec.js -------------------------------------------------------------------------------- /javascript-exercises/snakeCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/snakeCase/README.md -------------------------------------------------------------------------------- /javascript-exercises/snakeCase/snakeCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/snakeCase/snakeCase.js -------------------------------------------------------------------------------- /javascript-exercises/snakeCase/snakeCase.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/javascript-exercises/snakeCase/snakeCase.spec.js -------------------------------------------------------------------------------- /landing-page/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/credits.html -------------------------------------------------------------------------------- /landing-page/images/crypto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/images/crypto.svg -------------------------------------------------------------------------------- /landing-page/images/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/images/exclamation.svg -------------------------------------------------------------------------------- /landing-page/images/guy-typing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/images/guy-typing.jpg -------------------------------------------------------------------------------- /landing-page/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/images/icon.svg -------------------------------------------------------------------------------- /landing-page/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/images/loading.svg -------------------------------------------------------------------------------- /landing-page/images/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/images/security.svg -------------------------------------------------------------------------------- /landing-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/index.html -------------------------------------------------------------------------------- /landing-page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/landing-page/style.css -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/logo.png -------------------------------------------------------------------------------- /odin-recipes/images/baked-ziti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/images/baked-ziti.jpg -------------------------------------------------------------------------------- /odin-recipes/images/best-hamburger-ever.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/images/best-hamburger-ever.jpg -------------------------------------------------------------------------------- /odin-recipes/images/fried-egg-sandwiches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/images/fried-egg-sandwiches.jpg -------------------------------------------------------------------------------- /odin-recipes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/index.html -------------------------------------------------------------------------------- /odin-recipes/recipes/baked-ziti.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/recipes/baked-ziti.html -------------------------------------------------------------------------------- /odin-recipes/recipes/best-hamburger-ever.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/recipes/best-hamburger-ever.html -------------------------------------------------------------------------------- /odin-recipes/recipes/fried-egg-sandwiches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/odin-recipes/recipes/fried-egg-sandwiches.html -------------------------------------------------------------------------------- /rock-paper-scissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/rock-paper-scissors/index.html -------------------------------------------------------------------------------- /rock-paper-scissors/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunkums/TheOdinProject/HEAD/rock-paper-scissors/script.js --------------------------------------------------------------------------------