made changes based on feedback from Frontend Mentor replies

This commit is contained in:
Robert McGovern 2022-01-31 15:48:05 +00:00
parent fbd63f2fa4
commit 04e585151c
5 changed files with 47 additions and 30 deletions

View File

@ -17,6 +17,7 @@
--clr-very-pale-blue: hsl(225, 100%, 98%); --clr-very-pale-blue: hsl(225, 100%, 98%);
--clr-desaturated-blue: hsl(224, 23%, 55%); --clr-desaturated-blue: hsl(224, 23%, 55%);
--clr-dark-blue: hsl(223, 47%, 23%); --clr-dark-blue: hsl(223, 47%, 23%);
--clr-light-purple: hsla(245, 83%, 68%, 1);
/* Fonts */ /* Fonts */
--fs-p: 1rem; --fs-p: 1rem;
@ -24,12 +25,21 @@
--fw-700: 700; --fw-700: 700;
--fw-900: 900; --fw-900: 900;
/* Border Radius */ /* Border Radii */
--br-11: 11px; --br-11: 11px;
--br-20: 20px; --br-20: 20px;
/* Scaling fonts between the left and right sizes */
--font-width-15px-16px: clamp(0.94rem, 0.92rem + 0.09vw, 1rem); --font-width-15px-16px: clamp(0.94rem, 0.92rem + 0.09vw, 1rem);
--font-width-14px-16px: clamp(0.88rem, 0.83rem + 0.19vw, 1rem); --font-width-14px-16px: clamp(0.88rem, 0.83rem + 0.19vw, 1rem);
/*
Used for the Price Plan box and the Proceed to Payment button
sensibly these should be two seperate variables in case the
components where used in different places */
--box-width: 85%;
--page-background-img: url("../images/pattern-background-mobile.svg");
} }
*, *,
@ -44,18 +54,21 @@
/* General Formatting */ /* General Formatting */
html,
body {
height: 100%;
width: 100%;
}
body { body {
font-family: "Red Hat Display", sans-serif; font-family: "Red Hat Display", sans-serif;
width: 100vw;
height: 100vh;
background-color: var(--clr-pale-blue); background-color: var(--clr-pale-blue);
} }
main { main {
background-image: url(../images/pattern-background-mobile.svg); background-image: var(--page-background-img);
background-repeat: no-repeat; background-repeat: no-repeat;
width: 100%; min-height: 100%;
height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -63,6 +76,8 @@ main {
justify-content: center; justify-content: center;
} }
/* Order Summary Card formatting */
.card { .card {
width: clamp(327px, 32%, 450px); width: clamp(327px, 32%, 450px);
border-radius: var(--br-20); border-radius: var(--br-20);
@ -90,7 +105,7 @@ main {
margin: 0 clamp(2rem, 4vw, 3rem); margin: 0 clamp(2rem, 4vw, 3rem);
font-size: var(--font-width-15px-16px); font-size: var(--font-width-15px-16px);
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
line-height: 165%; line-height: 162%;
} }
.card__price-plan { .card__price-plan {
@ -98,14 +113,18 @@ main {
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
width: 85%; width: var(--box-width);
margin: 0 auto clamp(1.5rem, 4vw, 2rem) auto; margin: 0 auto clamp(1.5rem, 2vw, 2rem) auto;
padding: clamp(1rem, 2vw, 1.5315rem) 0; padding: clamp(1rem, 2vw, 1.5315rem) 0;
border-radius: var(--br-11); border-radius: var(--br-11);
background-color: var(--clr-very-pale-blue); background-color: var(--clr-very-pale-blue);
} }
.card__plan-type-area {
line-height: 1.3125;
}
.card__plan-type { .card__plan-type {
color: var(--clr-dark-blue); color: var(--clr-dark-blue);
font-size: var(--font-width-14px-16px); font-size: var(--font-width-14px-16px);
@ -113,11 +132,11 @@ main {
margin-bottom: clamp(0.1875rem, 0.8vw, 0.375rem); margin-bottom: clamp(0.1875rem, 0.8vw, 0.375rem);
} }
.card__plan-price { .card__plan-price {
font-size: 0.875rem; font-size: var(--font-width-14px-16px);
font-weight: 500; font-weight: 500;
} }
.card__change-button { .card__change-button {
font-size: 0.8125rem; font-size: clamp(0.813rem, 0.79rem + 0.09vw, 0.88rem);
font-weight: var(--fw-700); font-weight: var(--fw-700);
color: var(--clr-bright-blue); color: var(--clr-bright-blue);
} }
@ -132,7 +151,7 @@ main {
.card__payment-button { .card__payment-button {
color: white; color: white;
background-color: var(--clr-bright-blue); background-color: var(--clr-bright-blue);
width: 85%; width: var(--box-width);
margin: 0 auto clamp(1.5rem, 4vw, 2rem) auto; margin: 0 auto clamp(1.5rem, 4vw, 2rem) auto;
box-shadow: 0px 20px 20px rgba(56, 42, 225, 0.190291); box-shadow: 0px 20px 20px rgba(56, 42, 225, 0.190291);
border-radius: var(--br-11); border-radius: var(--br-11);
@ -142,23 +161,21 @@ main {
margin-bottom: clamp(2rem, 8vw, 3rem); margin-bottom: clamp(2rem, 8vw, 3rem);
} }
.card__change-button:is(:hover, :focus) {
color: var(--clr-light-purple);
}
.card__payment-button:is(:hover, :focus) {
background-color: var(--clr-light-purple);
}
.card__cancel-button:is(:hover, :focus) {
color: var(--clr-dark-blue);
}
@media screen and (min-width: 376px) { @media screen and (min-width: 376px) {
:root { :root {
--clr-light-purple: hsla(245, 83%, 68%, 1); --box-width: 80%;
} --page-background-img: url("../images/pattern-background-desktop.svg");
main {
background-image: url(../images/pattern-background-desktop.svg);
}
.card__change-button:hover {
color: var(--clr-light-purple);
}
.card__payment-button:hover {
background-color: var(--clr-light-purple);
}
.card__cancel-button:hover {
color: var(--clr-dark-blue);
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 595 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -40,8 +40,8 @@
<!-- maybe price-plan, then price-plan__icon, __plan-type, __plan-price, __change-button? --> <!-- maybe price-plan, then price-plan__icon, __plan-type, __plan-price, __change-button? -->
<img class="card__icon" src="./images/icon-music.svg" alt="Music icon" aria-hidden="true"> <img class="card__icon" src="./images/icon-music.svg" alt="Music icon" aria-hidden="true">
<div class="card__plan-type-area"> <div class="card__plan-type-area">
<div class="card__plan-type">Annual Plan</div> <p class="card__plan-type">Annual Plan</p>
<div class="card__plan-price">$59.99/year</div> <p class="card__plan-price">$59.99/year</p>
</div> </div>
<a href="#" class="card__change-button">Change</a> <a href="#" class="card__change-button">Change</a>
</div> </div>