This repository is meant to be forked, cloned, and played with. It contains the following file structure:
├── README.md # you are reading this
├── index.html # open in a browser
├── scripts
│ ├── app.js # boilerplate JS
│ └── jquery.js
└── style
├── style.css # ouput CSS from our Sass
├── style.css.map # map file
├── style.scss # primary sass file to watch 'sass -w style.scss'
└── variables.scss # variables file imported by style.scss- Clone this repository and navigate to it.
- Run
sass -w style/style.scssto watch your Sass files. - Open
index.htmlin your browser.
- Resize the window for
index.htmlin your browser. - What changes?
- Can you identify the breakpoints for this web page?
- Can you describe which
<meta>tag is responsible for making our page responsive? - Why is this?
- What research can you find online about this tag?
- In the
variables.scssandstyle.scssare a few breakpoints/screen sizes to break at. - Your challenge is to add three more breakpoints and elements to hide/show when they are available!
- Find breakpoints that mean something - perhaps a tablet screen size? Laptop screen size? Etc?