Not Found
Not Found
Not Found
Not Found
Request path contains unescaped characters
Request path contains unescaped characters
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

  • @karim769

    Submitted

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

    How do I make a gradient color in a circle

    Adritriz 110

    @Adritriz

    Posted

    The layout looks great in different screen size ranges! Very well structured and readable. The only pointer I would give is to code for mobile design first so you don't run into layout issues for bigger projects. This is how to change the gradient for the backgrounds: <selector> { background-image: linear-gradient (to [direction] , color 1, color 2); }

    The directions can be to top, to bottom, to right, to left..... whatever way you want your gradient to go. Hope this helped!

    Marked as helpful

    1
  • Adritriz 110

    @Adritriz

    Posted

    One way to avoid non responsive layouts is to code for mobile design first, and then add media queries for larger screens.

    Marked as helpful

    1
  • Adritriz 110

    @Adritriz

    Posted

    Hi! You wanted some feedback on changing the color for the list marker, here's a simple way of styling markers:

    ul li::marker, ol li::marker { color: var(--NUTMEG-COLOR); }

    using the ::marker pseudo element you can style the markers easily.

    Marked as helpful

    0