Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 1.39 KB

README.md

File metadata and controls

62 lines (42 loc) · 1.39 KB

Frontend Mentor - Single price grid component solution

This is a solution to the Single price grid component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

Screenshot

screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • Mobile-first workflow

What I learned

  • Learnt how to design layouts
  • Learnt how to use flexbox to arrange elements
  • Learnt how to use pseudo class
  • Learnt how to use position: relative to adjust position
#period{
    position: relative;
    top: -2px;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-left: 5px;
}

button:hover{
    cursor: pointer;
    background-color: #A9C42D;
    transform: scale(1.02);
}

Author