Skip to content

Test repository for Codecademy London git workshop.

Notifications You must be signed in to change notification settings

RanojitKumar/git-workshop-test-

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Stats preview card component solution

This is my solution to the Stats preview card component challenge on Frontend Mentor.

Table of contents

Overview

The challenge

Users should be able to:

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

Desktop view

Mobile View

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox

What I learned

Two different menthod of creating colour overlays, firstly setting the image and the background of a containger and adding and overlay element on top , secondly making the background the desired color and reducing the opacity of the image to greate the appearance of an overlay.

See two versions below:

V1 (overlay):

<div class="image desktop">
  <div class="overlay"></div>
</div>
.image {
    width: 50%;
    background-image: url("../images/image-header-desktop.jpg");
}
.overlay{
    background-color: hsla(277, 64%, 61%, 60%);
    width: 100%;
    height: 100%;
}

V2 (underlay):

<div class="mobile overlay">
          <img class="mobile" src="resources/images/image-header-mobile.jpg" alt="" />
        </div>
  img {
        opacity: 40%;
  }
  .overlay {
      background-color: hsl(277, 64%, 61%);
  }

Continued development

Moving forward I want to further my understanding of flex and responsive design so im able to organsie my css better.

Author

About

Test repository for Codecademy London git workshop.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 57.1%
  • HTML 42.9%