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

  • Kate Dames 250

    @funficient

    Submitted

    Hey, I have one question. Why is my span color not overwriting the transparent class setting? What am I doing wrong?

    Here is the section of the CSS I'm referring to:

    .transparent {
      color: var(--color--neutral-white);
      opacity: 0.7;
    }
    
    .white {
      color: var(--color--neutral-white);
    }
    
    span {
      color: var(--color--neutral-white);
      opacity: 1;
      font-size: 2rem;
      font-weight: 800;
    }
    

    Any other comments and feedback are welcome!

    Thank you :-)

    Bartosz 240

    @silvertal

    Posted

    Hi, I think the problem is that class transparent is more specific than element span. Try writing .transparent span {}

    Marked as helpful

    0
  • Ethan 320

    @Et18n

    Submitted

    How to set up the background 2 blobs without moving everything in the process, I've tried position : absolute . It doesn't seem to work.

    Any feedback is appreciated.

    Bartosz 240

    @silvertal

    Posted

    you can use "background-image: url(image 1), url(image 2);" and the use this to position them "background-position: position image 1, position image 2;", also for this use "background-repeat: no-repeat;". I hope this can help you

    Marked as helpful

    1