Skip to content

A frontend mentor challenge in which I had to replicate a given design of a social proof section within a website.

Notifications You must be signed in to change notification settings

Beeching/Social-Proof-Section

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Social proof section solution

This is a solution to the Social proof section challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for the section depending on their device's screen size

Links

  • Live Site URL: here

My process

Built with

  • HTML5 markup
  • CSS (SASS)
  • CSS Grid & Flexbox
  • Mobile-first workflow

What I learned

I'm very new to html & css so this was a great learning experience for me. It was my first time working with a mobile-first workflow and also my first time using grid. Using grid-area-templates like:

.container {
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: 
  "content1 content2"
  "content3 content3";
}

was really useful for me. It makes layout creation a lot easier and is good for visual learners like myself. It also allows you to completely redesign your layout with media queries super easily.

Continued development

Since it was my first time using grid, I think I have some ways to go until I'm fully comfortable with positioning etc. I need to work on positioning grid-items and get that drilled into my head. My solution is probably very messy due to it being my first time, but I'm looking forward to improving!

Author

About

A frontend mentor challenge in which I had to replicate a given design of a social proof section within a website.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published