Fun Bus is a travel agency looking for some help on their website. They want a new navigation, new header, and new buttons on the home page. They also want a mobile version of their site styled. Use your preprocessing knowledge to accomplish their tasks.
- [x ] Create a forked copy of this project.
- [ x] Add your project manager as collaborator on Github.
- [ x] Clone your OWN version of the repository (Not Lambda's by mistake!).
- [ x] Create a new branch: git checkout -b
<firstName-lastName>. - [x ] Implement the project on your newly created
<firstName-lastName>branch, committing changes regularly. - [ x] Push commits: git push origin
<firstName-lastName>.
Follow these steps for completing your project.
- [ x] Submit a Pull-Request to merge Branch into master (student's Repo). Please don't merge your own pull request
- [ x] Add your project manager as a reviewer on the pull-request
- [ x] Your project manager will count the project as complete by merging the branch back into master.
- [ x] Verify that you have LESS installed correctly by running
lessc -vin your terminal, if you don't get a version message back, reach out to your project manager for help. - [x ] Open your terminal and navigate to your preprocessing project by using the
cdcommand - [x ] Once in your project's root folder, run the following command
less-watch-compiler less css index.less - [ x] Verify your compiler is working correctly by changing the
background-coloron thehtmlselector toredin yourindex.lessfile. - [x ] Once you see the red screen, you can delete that style and you're ready to start on the next task
- [ x] Navigate to your
index.lessfile. Notice the file is blank. In order for you to see the styles for this project you must import them in a certain order. That order is as follows:
variables.lessmixins.lessreset.lessglobal.lessnavigation.lessfooter.lesshome-page.less
- [ x] Review the desktop design file. Notice the navigation, header, and buttons at the bottom of the page are missing.
- [ x] Navigation: Use the
navigation.lessfile for all your navigation styling - [ x] Main Header: Use the
home-page.lessfile for the header styling. - [x ] Buttons: Create a parametric mixin that can create the missing buttons in the design file. Use the
mixins.lessfile to create your mixin.
- Use escaping to create a variable named
@mobilethat contains this value:(max-width: 500px). Use thevariables.lessfile to house your styling. - Review the mobile design file. You will see several design updates that need updating.
- Match the design file at
500pxas well as you can
- Create an animation mixin using parametric mixins
- Introduce a form with inputs allowing users to select a vacation package and a submit button at the bottom of the page. Introduce inputs for name, email, phone number, and an area for them to leave special instructions.
- Style the site to look good at all sizes, not just desktop and phone