Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Request path contains unescaped characters
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • P
    LinhUK 10

    @LinhUK

    Posted

    This looks great. From looking at other solutions, I've learned that using CSS variables are a great way to enhance flexibility and maintainability of stylesheets. E.g., :root { /* Background Colours */ --light-blue: hsl(212, 45%, 89%); } body { background-color: var(--light-blue); }

    https://www.w3schools.com/css/css3_variables.asp

    0