Skip to content

ARodriguezHacks/social-links-profile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Social links profile solution

Hello, my name is Angie and this is my solution to the Social links profile challenge on Frontend Mentor.

Table of contents

Overview

The challenge

Users should be able to:

  • See hover and focus states for all interactive elements on the page

Screenshot

Desktop View

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS
    • Custom properties (a.k.a., variables)
    • Native nesting
    • Transitions
    • Flexbox
  • Mobile-first workflow

What I learned

The main learning goals I set for myself were: 1) to write cleaner code, and 2) begin approaching projects in a more organized fashion.

More specifically, I was interested in gaining practice with existing and newer CSS innovations. These included the @font-face at-rule (I'd always imported my fonts using the @import at-rule) and more notably native CSS nesting.

I'm particularly proud of this CSS code below because it combines some new things I had yet to experience, mostly the opportunity to use nesting without a preprocesser (e.g., Sass).

main {
.../** code commented out for readability*/
  & button {
    background: var(--color-neutral-grey);
    color: var(--color-neutral-white);
    padding: 15px;
    border-style: hidden;
    border-radius: 10px;
    transition: all 0.25s linear;

    &:not(:last-child) {
      margin-bottom: 16px;
    }

    &:hover {
      background: var(--color-primary);
      color: var(--color-neutral-grey);
      cursor: pointer;
    }
  }
.../** code commented out for readability*/
}

Challenges I faced

After deploying my solution to Github Pages, I saw the links to fonts were throwing 404s, leading me investigate the problem.

I'm not certain what the actual solution was, but it gave me an opportunity to attempt another new CSS feature: Variable fonts. Rather than use the static font files during my first deploy, I was curious about the benefits of variable fonts and whether the file provided for this project would be better for deploying to production.

After watching a couple of videos online, I felt my local solution was working properly again with these new changes, and I crossed my fingers in the hopes the errors would be resolved in production.

Continued development

This was a great first project to brush up on my HTML and CSS skills, and for future and similar projects include, I look forward to delving more into:

  • Accessibility within HTML and CSS
  • BEM and other CSS writing best practices
  • Container queries
  • Everything web fonts and the various methods for using them in CSS and their trade offs

Useful resources

  • CSS Transitions - Helpful resource I always refer to when creating CSS transitions.
  • BEM Naming Convention - I'm still gaining practice with this approach because it's not easy for me to remember, but I try to approach my CSS class namings and HTML structuring from the teachings laid out in this article.

Author

About

Frontend Mentor Solution for Social Links Profile Challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published