Assignment 11
Sass Mixins & Functions
Set up the GitHub repository that we will be using for all of the assignments over the course of the semester.
Submission
Push your completed deliverable to your GitHub deliverable repository.
Due: Sun Nov 27 2022
Define a Sass mixin called grid
that can be used to generate a responsive grid. A couple specific requirements:
- The layout create must use CSS
grid
- The mixin should take 4 arguments, the number of columns on small, medium, and large screen sizes and the gap value
- The mixin must be generic and reusable in multiple locations. Do not include any extra specific styles that are not specifically needed for the grid
- Make sure to properly organize your files as discussed in class.
# Styling
Copy paste the entire sass
folder that we assembled together in the In-Class 11 - Sass File Structure into this assignment as your starting point so you have all of the previous files to work with.
# Submission
Submit this assignment by pushing your code to your mad9013-deliverables
repository with the commit message Complete 11-sass-mixin assignment
.