Skip to content

Anjie-MF/FEM_meetLandingPage_figma

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Meet landing page solution

This is a solution to the Meet landing page 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 depending on their device's screen size
  • See hover states for interactive elements

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Figma

What I learned

Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.

To see how you can add code snippets, see below:

      <div class="component-marker2">
        <div class="vertical-line"></div>
        <div class="circle">02</div>
      </div>

It was my first time "drawing" using HTML... 
section .vertical-line {
    background-color: #d1d1d1;
    width: 1px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
}

section .circle {
    width: 56px;
    height: 56px;
    background-color: #d1d1d1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

... And using CSS  to visualize it. 
.footer-hero::before {
    content: "";
    background-color: #4d96a9;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

First really using z-index and pseudo-elements. 

Continued development

I am looking forward to learning more about z-index, pseudo-elements, and CSS specificity.

Useful resources

Author

Acknowledgments

  • Front End Mentor Discord - [chamu_k_m]- Thank you for pointing out that the media queries were wrtiten incorrectly.
  • Front End Mentor Discord - [itsdarkstar] - Thank you for pointing out horizontal scrollbar, the excessive amount of grid-columns, and instructions on how to layer the componenent marker.

About

A HTML/CSS only layout that tests responsive layouts skills!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published