Hacker News new | ask | show | jobs
by HugoGiraudel 4176 days ago
It has been updated.
2 comments

You still have it here:

    // Yep
    .element {
      color: rgba(0, 0, 0, .1);
      background: hsl(300, 100%, 100%);
    }

    // Nope
    .element {
      color: rgba(0,0,0,.1);
      background: hsl( 300, 100%, 100% );
    }
Fixed, thank you very much. :)
Well done!