diff --git a/projects/FrontendMentor/newbie/pod-request-access-landing-page/README.md b/projects/FrontendMentor/newbie/pod-request-access-landing-page/README.md index 14c1344..fb2ffd8 100755 --- a/projects/FrontendMentor/newbie/pod-request-access-landing-page/README.md +++ b/projects/FrontendMentor/newbie/pod-request-access-landing-page/README.md @@ -65,6 +65,7 @@ The approach to this was more difficult than any of the Frontend Mentor challeng Now I have to think about Mobile, Tablet, and Desktop; rather than just Mobile and Desktop. +Also interesting was working without a style guide document + figma doc. This time I just had the figma document, so I had to make more notes for myself. Interesting particularly because it wasn't clear from the design section what weights of Chivo I needed. To see how you can add code snippets, see below: diff --git a/projects/FrontendMentor/newbie/pod-request-access-landing-page/css/style.css b/projects/FrontendMentor/newbie/pod-request-access-landing-page/css/style.css index e69de29..bf0319f 100644 --- a/projects/FrontendMentor/newbie/pod-request-access-landing-page/css/style.css +++ b/projects/FrontendMentor/newbie/pod-request-access-landing-page/css/style.css @@ -0,0 +1,12 @@ +*, +::after, +::before { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +:root { + --lh-general: 1.75rem; + --lh-mobile: 1.5625rem; +}