Adembc / fylo-dark-theme-landing-page-master

Challenge From Frontendmonitor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Frontend Mentor - Fylo dark theme landing page solution

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

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Normalize - Normalize.css makes browsers render all elements more consistently and in line with modern standards
  • Fontawesome - the web's most popular icon set and toolkit.

What I learned

Some CSS code I am proud of

.container {
    padding: 0 90px;
    margin: 0 auto; 
    width: 98%;
}
@media (max-width : 992px){
    .container{
    padding : 0 45px ;
}
}
@media (max-width : 767px){
    .container {
        padding: 0 20px;
    }
}
@media (max-width : 767px){
    .access form {
        flex-direction: column; 
        padding: 0 ;
    }
}

Continued development

Learn more about SVG

Useful resources

Author

Acknowledgments

I would thank Ousama Mohamed Elzero for his effort to simplify the learning process and make it enjoyable

About

Challenge From Frontendmonitor


Languages

Language:CSS 62.7%Language:HTML 37.3%