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

  • @Juliancito1

    Submitted

    What are you most proud of, and what would you do differently next time?

    I learn how to use css grid, I mostly use Grid but with Bootstrap framework (I think it is more easier).

    What challenges did you encounter, and how did you overcome them?

    I had problems with grid but I saw a tutorial and that's it

    What specific areas of your project would you like help with?

    I had problems with the "Kira" second paragraph but I saw it was just to use line-height. If you find something let me know

    Mihai 220

    @h-mihail

    Posted

    Good job! I think you can reduce the amount of CSS by adding the text color to the card class and creating a new class just for the opaque paragraph:

        .cardKira {
            grid-column: 4;
            grid-row: 1/3;
            color: var(--Very-dark-grayish-blue);
            background-color: var(--White);
        }
        .degree {
            opacity: 50%;
        }
    

    You won't need any more

    .cardKira div h6{
        ...
    }
    
    0
  • @azizedogan

    Submitted

    What are you most proud of, and what would you do differently next time?

    It was a design that I thought was closest.

    What challenges did you encounter, and how did you overcome them?

    I did not encounter any difficulties.

    What specific areas of your project would you like help with?

    Are there places I need to change or improve in my codes? If so, how can I improve them?

    Mihai 220

    @h-mihail

    Posted

    Nice job! You can improve the mobile design by using media queries and converting your font-size to use rem instead of px.

    For example:

    body {
        font-size: 15px;
        ...
    }
    @media screen and (max-width: 375px) {
      body {
        font-size: 10px;
        ...
      }
    }
    ...
    font-size: 0.7rem; // for 11px
    font-size: 0.8rem; // for 12px
    
    0
  • @konraddissake1808

    Submitted

    What are you most proud of, and what would you do differently next time?

    I completed the task in the time limit i imposed myself. It really added a little bit of pressure

    What challenges did you encounter, and how did you overcome them?

    No great challenge

    What specific areas of your project would you like help with?

    None

    Mihai 220

    @h-mihail

    Posted

    Nice job!

    Marked as helpful

    0
  • @AminXatia

    Submitted

    What are you most proud of, and what would you do differently next time?

    I am proud that I can now code a little bit more complicated template and it works really good.

    What challenges did you encounter, and how did you overcome them?

    On this project my main problem was with padding, image, container, the balance between gaps but fortunately I could mange to solve them.

    What specific areas of your project would you like help with?

    Nothing

    Mihai 220

    @h-mihail

    Posted

    Good job!

    1
  • Mihai 220

    @h-mihail

    Posted

    Pretty solid work.

    0
  • Mihai 220

    @h-mihail

    Posted

    Try to find another way to center the card. It does not look centered on mobile.

    Also, the height: 100vh is causing some weird scroll issues.

    Otherwise it looks good.

    Marked as helpful

    1
  • @RomuloLB28

    Submitted

    What are you most proud of, and what would you do differently next time?

    eu estou feliz por conseguir terminar meu primeiro desafio de programação. Contudo, não ficou 100% como a demanda e nem 100% responsivo. Nos próximos pretendo reparar e reforçar esses pontos.

    What challenges did you encounter, and how did you overcome them?

    falta de conhecimento básico em css. Superei testando e estudando diversas propriedades

    What specific areas of your project would you like help with?

    a melhorar a responsividade dele

    Mihai 220

    @h-mihail

    Posted

    ¡buen trabajo! Puedes utilizar tags semánticos como "main" o "article" para ayudar a las personas con discapacidad visual

    Marked as helpful

    0