Latest solutions
HTML5/SCSS/TypeScript Newsletter Sign-Up Form with Success Message
#cube-css#sass/scss#typescriptSubmitted over 1 year ago
Latest comments
- @shalomkerry@EONRaider
Hello there.
Try this shadow on the card: box-shadow: 0 40px 40px -20px rgba(13, 48, 189, 0.15);
And this one for the “Proceed to Payment” button: 0 20px 20px 0 rgba(56, 42, 225, 0.19);
The “You can now listen…” text has this color: #717fa6
Finally, the card’s dimensions should be 450x697px.
Marked as helpful - @shalomkerry@EONRaider
Hello. Take a look at CUBE CSS if you're interested in methodology. You can still use BEM along with it but it will also help you structure your code.
Marked as helpful - @Mantas101@EONRaider
Hello. Try using this box-shadow declaration around your "main" container:
box-shadow: 0 30px 60px 0 rgba(61, 108, 236, 0.15);
You should get the correct shadow when compared to the model.
- @shalomkerry@EONRaider
The glow you see are very subtle linear gradients. Check my solution to see the correct values: https://eonraider-results-summary-component.netlify.app/
Just use the browser developer tools and copy the declarations.
Marked as helpful - @JesnerW@EONRaider
Hello. You've got a problem with the "Get Started" hover dynamics. The hovering itself goes all the way until the end of the block. To fix this, simply add "align-items: flex-start" to your ".card" class.
I hope this helps.
- @robsongomes@EONRaider
Here's the correct value to use for the box-shadow property on the cards:
box-shadow: 0 15px 30px -11px rgba(131, 166, 210, 0.50);
Marked as helpful