|
| 1 | +# Intro CSS Module Challenge |
| 2 | + |
| 3 | +The module challenge is the afternoon project or assignment that students work through independently. This expands on the guided project completed earlier with the instructor. |
| 4 | + |
| 5 | +## User Interface and Git |
| 6 | + |
| 7 | +## Objectives |
| 8 | + |
| 9 | +- implement a CSS reset and understand why it’s important for cross-browser development |
| 10 | +- demonstrate CSS specificity and inheritance to create and update styles |
| 11 | +- identify and explain all properties in the box model |
| 12 | + |
| 13 | +## Introduction |
| 14 | + |
| 15 | +In this challenge you will be styling a single page with more advanced CSS. This page is a take on the government's [national parks website](https://www.nps.gov/yose/index.htm) and includes some basic information about Yosemite National Park in California. |
| 16 | + |
| 17 | +The styles in your [design file](/design/desktop.png) include bright colors and fun icons to get people excited about exploring the outdoors. With a little work, this could even be refactored into a 3rd-party national parks guide site or blog. |
| 18 | + |
| 19 | +## Instructions |
| 20 | + |
| 21 | +### Task 1: Set Up The Project With Git |
| 22 | + |
| 23 | +Follow these steps to set up and work on your project: |
| 24 | + |
| 25 | +- [ ] Create a forked copy of this project. |
| 26 | +- [ ] Add your Team Lead as collaborator on Github. |
| 27 | +- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!). |
| 28 | +- [ ] Create a new branch: git checkout -b `<firstName-lastName>`. |
| 29 | +- [ ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly. |
| 30 | +- [ ] Push commits: git push origin `<firstName-lastName>`. |
| 31 | + |
| 32 | +### Task 2: Minimum Viable Product |
| 33 | + |
| 34 | +Once your repository is set up, practice what you learned today to style the site according to the given design. Your complete project should look similar to the desktop image. You should take the following actions, at a minimum: |
| 35 | + |
| 36 | +- [ ] Link your CSS stylesheet to `index.html` |
| 37 | +- [ ] Markup html semantically, such that it can be styled according to the given desktop image |
| 38 | +- [ ] Color the background of items in the navigation bar and footer with the following colors: |
| 39 | + - [ ] Plan your Visit: `#FF764E` |
| 40 | + - [ ] Learn About the Park: `#5ED3EB` |
| 41 | + - [ ] Get Involved: `#FFCD69` |
| 42 | +- [ ] Change all font colors and styles according to design file |
| 43 | + - [ ] Yosemite Park Guide font is called Chelsea Market and can be found on [google fonts](https://fonts.google.com/specimen/Chelsea+Market) |
| 44 | + - [ ] All other text is Roboto Mono, also available on [google fonts](https://fonts.google.com/specimen/Roboto+Mono) |
| 45 | +- [ ] Color the background of the main text body with `#DDB9A3` |
| 46 | +- [ ] Color the background of the footer with `#F9E7DC` |
| 47 | +- [ ] Bold the words "current fire restrictions" and "park entrance fee" according to the design file |
| 48 | +- [ ] Apply box model properties (content, padding, margin, and border) to all content such that your webpage matches the design file. This will include at least: |
| 49 | + - [ ] A round image in the header |
| 50 | + - [ ] Round corners on navigation and footer items |
| 51 | + - [ ] Header image and text side by side |
| 52 | + - [ ] Centered content and margins around content |
| 53 | + - [ ] Footer image positioning |
| 54 | + |
| 55 | +**Throughout your design you should avoid static units (pixels), and should instead use responsive units wherever possible.** |
| 56 | + |
| 57 | +### Task 3: Stretch Goals |
| 58 | + |
| 59 | +The following goals are designed to stretch your knowledge and may require additional research beyond what was learned in class today. |
| 60 | + |
| 61 | +- [ ] Add CSS animations (hover, mouseover, etc.) |
| 62 | +- [ ] Design and execute your own pages for `Plan your Visit`, `Learn About the Park`, or `Get Involved` |
| 63 | +- [ ] Use [favicon.io](favicon.io) to convert the campfire and RV images to real favicons and use them in your project |
| 64 | +- [ ] Host your website on Netlify.com |
| 65 | + |
| 66 | +## Resources |
| 67 | + |
| 68 | +👋 [Assignment help: w3 CSS tutorials](https://www.w3schools.com/css/) |
| 69 | + |
| 70 | +👀 [Yosemite National Park Official Website](https://www.nps.gov/yose/index.htm) |
| 71 | + |
| 72 | +## Submission format |
| 73 | + |
| 74 | +Follow these steps for completing your project. |
| 75 | + |
| 76 | +- [ ] Submit a pull request to merge <firstName-lastName> Branch into master (student's Repo). **Please don't merge your own pull request** |
| 77 | +- [ ] Add your Team Lead as a reviewer on the pull request |
| 78 | +- [ ] Your Team Lead will count the project as complete by merging the branch back into master |
0 commit comments