Added a class and id based style for requirements and slight visual change

This commit is contained in:
2025-10-03 10:19:21 -04:00
parent 0b493ffb0d
commit 179d40aa8c
5 changed files with 21 additions and 9 deletions

View File

@ -51,7 +51,7 @@
</section> </section>
</article> </article>
</main> </main>
<footer> <footer id="site-footer">
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a> <a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
</footer> </footer>
</body> </body>

View File

@ -65,7 +65,7 @@
<td>181</td> <td>181</td>
<td>36</td> <td>36</td>
<td>6</td> <td>6</td>
<td>295</td> <td class="totalcol">295</td>
</tr> </tr>
<tr> <tr>
<th scope="row">Blue</th> <th scope="row">Blue</th>
@ -73,7 +73,7 @@
<td>176</td> <td>176</td>
<td>36</td> <td>36</td>
<td>0</td> <td>0</td>
<td>281</td> <td class="totalcol">281</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -81,7 +81,7 @@
</article> </article>
</main> </main>
<footer> <footer id="site-footer">
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a> <a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
</footer> </footer>
</body> </body>

View File

@ -49,7 +49,7 @@
</section> </section>
</article> </article>
</main> </main>
<footer> <footer id="site-footer">
<a href="/index.html">Back to the homepage</a> <a href="/index.html">Back to the homepage</a>
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a> <a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
</footer> </footer>

View File

@ -90,7 +90,7 @@
</section> </section>
</article> </article>
</main> </main>
<footer> <footer id="site-footer">
<a href="/index.html">Back to the homepage</a> <a href="/index.html">Back to the homepage</a>
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a> <a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
</footer> </footer>

View File

@ -117,10 +117,9 @@ nav a:hover {
main { main {
flex: 1; flex: 1;
max-width: 1200px; margin: 0 2rem;
margin: 0 auto;
padding: var(--spacing-large); padding: var(--spacing-large);
width: 100%; box-sizing: border-box;
} }
article { article {
@ -210,4 +209,17 @@ td {
tr:hover { tr:hover {
background-color: var(--background-secondary); background-color: var(--background-secondary);
}
.totalcol {
background-color: var(--secondary-dark-blue);
}
#site-footer {
background-color: var(--background-secondary);
text-align: center;
padding: var(--spacing-large);
margin-top: var(--spacing-large);
border-top: 2px solid var(--border-color);
border-radius: var(--border-radius) var(--border-radius) 0 0;
} }