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 comments

  • philale 350

    @Philale

    Posted

    Hello! Congratulations on completing the challenge! Even if it took days to complete, the result is very beautiful! It shows that you learned a lot in the process, because now you managed to do it!

    I just recognized two things you could improve:

    1. Use padding instead of margin on the .content div, because for adding some space around an elements content padding is used. Otherwise it could interfere with the box model. Margin is the outermost part of the box model, if you want to add a border later on for example, that would cause unwanted results.

    2. You used quite many flex container to position the card in the center of the screen. For these challenges you could just use absolute positioning, like so:

    .card{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50% -50%);
    }
    

    Then you don't need the display: flex property on the body and .container.

    By the way I love the hovering effect on the card, simple but very pretty! Keep up the work!

    Marked as helpful

    0
  • philale 350

    @Philale

    Posted

    Hey, Congratulations on completing the challenge! It looks very good, with the higher border-radius even better than the design in my eyes.

    One thing you could improve is using the min() and max() css functions to implement responsiveness. Here is an example:

    Instead of writing:

    .box{
        width: 45%;       
    }
    
    @media screen and (max-width:575px){ 
        .box{
            width: 80%;                       
        }
    }
    

    You can use the min() function, like so:

    .box{
        width: min(750px, 80%);      
    }
    

    This just says that it will use the value, that is smaller. That means, if 80% of the screen width are smaller than 750px, the 80% will be used and vice versa. There will be a quite different behaviour than the one now visible, but it is also removing the "jump" from 45% to 80%.

    Try it out, it can really help and will clean up your css code!

    Marked as helpful

    1
  • @alex1991tikhomirov

    Submitted

    Couldn't get images to appear on the live site. Worked fine on my laptop. Can you guys tell me why is that happening? Thanks.

    philale 350

    @Philale

    Posted

    Hey,

    Congratulations on completing the challenge, looks pretty.

    Regarding your question why the image does not show up:

    Check out this question on SO, there is a informative answer!

    Try copying the svg element from the svg file into the url() function, like so:

    background-image: url("data:image/svg+xml,***<svg 
    xmlns="http://www.w3.org/2000/svg" width="146" height="145"><g fill="none" 
    fill-rule="evenodd" stroke="#CFD8EF"><circle cx="63" cy="82" r="62.5"/>
    <circle cx="105" cy="41" r="40.5"/></g></svg>***");
    

    I did not test it myself, but give it a try. You said it works on your laptop, so I don't know if that will solve the problem.

    Marked as helpful

    1