This is a solution to the Product preview card component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
- Solution URL: Product Preview Card (SASS + Flexbox) | Frontend Mentor
- Live Site URL: https://product-preview-card-component-sol.vercel.app/
Users should be able to:
- View the optimal layout depending on their device's screen size
- See hover and focus states for interactive elements
- Semantic HTML5 markup
- Flexbox
- SASS - Sass modules
- 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
│ │ ├── favicon-32x32.png
│ │ ├── icon-cart.svg
│ │ ├── image-product-desktop.jpg
│ │ └── image-product-mobile.jpg
│ └── sass
│ ├── abstracts
│ │ ├── _mixins.scss
│ │ └── _variables.scss
│ ├── base
│ │ ├── _page.scss
│ │ └── _reset.scss
│ ├── component
│ │ ├── _attribution.scss
│ │ ├── _button.scss
│ │ ├── _card-product.scss
│ │ └── _heading.scss
│ ├── layout
│ │ └── _section.scss
│ └── main.scss
├── design
│ ├── active-states.jpg
│ ├── desktop-design.jpg
│ ├── desktop-preview.jpg
│ ├── mobile-design.jpg
│ └── screenshot.png
├── index.html
└── README.md