Build an Availability Table - Build an Availability Table

Tell us what’s happening:

I was progressing through this project and everything was working nicely, then suddenly steps that were checked changed to Xs regarding the :root colors. Nothing I change about the code has any effect and I’m stuck. What should I do? It seems like the site is no longer registering my changes. Thank you!

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Availability Table</title>
</head>

<body>
    <table>
        <tr>
            <th>Sunday</th>
            <th>Monday</th>
            <th>Tuesday</th>
            <th>Wednesday</th>
            <th>Thursday</th>
            <th>Friday</th>
            <th>Saturday</th>
        </tr>
        <tr class="sharp">
            <th class="time">8:00</th>
            <th class="time">9:00</th>
            <th class="time">10:00</th>
            <th class="time">11:00</th>
        </tr>
        <tr class="half">
            <td class="available-0"></td>
            <td class="available-1"></td>
            <td class="available-2"></td>
            <td class="available-3"></td>
            <td class="available-4"></td>
            <td class="available-5"></td>
        </tr>
        <tr class="sharp">
            <td class="available-0"></td>
            <td class="available-1"></td>
            <td class="available-2"></td>
            <td class="available-3"></td>
            <td class="available-4"></td>
            <td class="available-5"></td>
        </tr>
        <tr class="half">
            <td class="available-0"></td>
            <td class="available-1"></td>
            <td class="available-2"></td>
            <td class="available-3"></td>
            <td class="available-4"></td>
            <td class="available-5"></td>
        </tr>
    </table>
</body>

</html>
/* file: styles.css */
:root {
  --color0: hsl(520,100,85);
  --color1: hsl(120,100,85);
  --color2: hsl(220,100,85);
  --color3: hsl(20,100,85);
  --color4: hsl(320,100,85);
  --color5: hsl(420,100,85);
}

.available-0 {
  background-color: var(--color0);
}

.available-1 {
  background-color: var(--color1);
}

.available-2 {
  background-color: var(--color2);
}

.available-3 {
  background-color: var(--color3);
}

.available-4 {
  background-color: var(--color4);
}

.available-5 {
  background-color: var(--color5);
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Build an Availability Table - Build an Availability Table

For instance, I made it through step 24 with all of them checked and then when I added the --solid-border and --dashed-border variables it all went haywire with the previous boxes 13-24 no longer checked. I deleted them and no change. I even copy and pasted code from others and from inspecting the example itself and nothing is registering . I reset the lesson as well.

you forgot to link the css file, you have one linked but it is not the correct one

Ha! Figures I would leave out a simple “s” in the word “styles”. Thanks for your help.