Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted


    Is there any way to make the blur box shadow blur more? I see it in layers, but I want it to be a smoother transition. Here is the code I used for the CSS:

    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.1)
    
  • Submitted


    Is the CSS I used for my footer not to overflow, ok? Or should I do something else? I struggle with it a lot to make it not overflow, so I am curious if there is a better way or if I finally cracked it. 🥹

    footer {
        background-color: hsl(216, 50%, 16%);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 2em;
    }
    
    footer p {
        font-weight: 400;
        font-size: 1.1rem;
        color: hsl(0, 0%, 100%, 0.5);
    }
    

    (hopefully the code formatting works here 😅)

  • Submitted


    I found it challenging to position the element in the center. I tried using flexbox, and after many failed attempts, I realized I had to set the component's height, so I put it to 100vh. 🙈 Then it all started working.

    I was also a bit confused about the box-shadow color because I tried all the colors provided, and none seemed right. So I chose my color. I hope that's ok. 👩‍💻

    Also, since this is my first challenge, I wasn't sure how it works. I was a bit confused that there weren't any measurements. But then I realized it's probably included in the PRO version. Isn't it? It seemed hard at first to guess the size of the boxes and fonts, but I think I made it work in the end.