This is a solution to the Testimonials grid section challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
- Solution URL: Testimonials Grid Section (SASS + Responsive + Grid Layout)
- Live Site URL: https://testimonials-grid-section-melhdz.vercel.app/
Users should be able to:
- View the optimal layout for the site depending on their device's screen size
- Semantic HTML5 markup
- Grid Layout
- SASS - Sass modules
- Material Design Box Shadows
- CSS background Property
- BEM naming convention
- Solving Sticky Hover States with @media (hover: hover)
- Frontend Mentor - @melvinaguilar
When using sass
in order to build this solution
- Install
sass
if not yet installed:
npm install -g sass
- Run build command from command line:
sass assets/sass/main.scss assets/css/style.css
- If you want to edit the code and test, in the root folder of this repository, run this command from the command line:
sass --watch assets/sass/main.scss assets/css/style.css
.
├── assets
│ ├── css
│ │ ├── style.css
│ │ └── style.css.map
│ ├── images
│ │ ├── bg-pattern-quotation.svg
│ │ ├── favicon-32x32.png
│ │ ├── image-daniel.jpg
│ │ ├── image-jeanette.jpg
│ │ ├── image-jonathan.jpg
│ │ ├── image-kira.jpg
│ │ └── image-patrick.jpg
│ └── sass
│ ├── abstracts
│ │ ├── _mixins.scss
│ │ └── _variables.scss
│ ├── base
│ │ ├── _page.scss
│ │ └── _reset.scss
│ ├── component
│ │ ├── _heading.scss
│ │ └── _screen-reader.scss
│ ├── layout
│ │ └── _testimonials-section.scss
│ └── main.scss
├── design
│ ├── desktop-design.jpg
│ ├── desktop-preview.jpg
│ └── mobile-design.jpg
├── index.html
└── README.md