Switch from class selector "td.td-desc" to "td.desc"

This class selector does not require duplicating "td" since it is
already specific to the "td" element.
This commit is contained in:
inference 2023-11-20 03:53:59 +00:00
parent 6d4d0af7df
commit db3690524c
Signed by: inference
SSH Key Fingerprint: SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc
3 changed files with 14 additions and 14 deletions

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- Inferencium - Website - About --> <!-- Inferencium - Website - About -->
<!-- Version: 6.3.0-alpha.2 --> <!-- Version: 6.3.0-alpha.3 -->
<!-- Copyright 2022 Jake Winters --> <!-- Copyright 2022 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause --> <!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -241,7 +241,7 @@
<br> <br>
Google Pixel Google Pixel
</td> </td>
<td class="td-desc"> <td class="desc">
<p>Google Pixel devices are <p>Google Pixel devices are
the best Android devices the best Android devices
available on the market available on the market
@ -371,7 +371,7 @@
<br> <br>
Gentoo Linux Gentoo Linux
</td> </td>
<td class="td-desc"> <td class="desc">
<p><a href="https://www.gentoo.org/">Gentoo Linux</a> <p><a href="https://www.gentoo.org/">Gentoo Linux</a>
is a highly modular, is a highly modular,
source-based, Linux-based source-based, Linux-based
@ -416,7 +416,7 @@
<br> <br>
Chromium Chromium
</td> </td>
<td class="td-desc"> <td class="desc">
<p><a href="https://chromium.org/">Chromium</a> <p><a href="https://chromium.org/">Chromium</a>
is a highly secure web browser is a highly secure web browser
which is often ahead of other which is often ahead of other
@ -459,7 +459,7 @@
<br> <br>
GrapheneOS GrapheneOS
</td> </td>
<td class="td-desc"> <td class="desc">
<p><a href="https://grapheneos.org/">GrapheneOS</a> <p><a href="https://grapheneos.org/">GrapheneOS</a>
is a security-hardened, is a security-hardened,
privacy-hardened, privacy-hardened,
@ -517,7 +517,7 @@
<br> <br>
Vanadium Vanadium
</td> </td>
<td class="td-desc"> <td class="desc">
<p>Vanadium is a <p>Vanadium is a
security-hardened, security-hardened,
privacy-hardened Chromium-based privacy-hardened Chromium-based
@ -549,7 +549,7 @@
<br> <br>
Molly Molly
</td> </td>
<td class="td-desc"> <td class="desc">
<p><a href="https://molly.im/">Molly</a> <p><a href="https://molly.im/">Molly</a>
is a security-hardened, is a security-hardened,
privacy-hardened privacy-hardened
@ -598,7 +598,7 @@
<br> <br>
Conversations Conversations
</td> </td>
<td class="td-desc"> <td class="desc">
<p><a href="https://conversations.im/">Conversations</a> <p><a href="https://conversations.im/">Conversations</a>
is a well-designed Android is a well-designed Android
<a href="https://xmpp.org/">XMPP</a> <a href="https://xmpp.org/">XMPP</a>

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- Inferencium - Website - Directory --> <!-- Inferencium - Website - Directory -->
<!-- Version: 0.6.0-alpha.1 --> <!-- Version: 0.7.0-alpha.1 -->
<!-- Copyright 2023 Jake Winters --> <!-- Copyright 2023 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause --> <!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -46,12 +46,12 @@
<tr> <tr>
<th id="inferencium">Inferencium</th> <th id="inferencium">Inferencium</th>
<td headers="uri inferencium"><code>xmpp://gojayi@muc.xmpp.inferencium.net?join</code></td> <td headers="uri inferencium"><code>xmpp://gojayi@muc.xmpp.inferencium.net?join</code></td>
<td class="td-desc" headers="description inferencium"> <td class="desc" headers="description inferencium">
<p>General Inferencium channel. All <p>General Inferencium channel. All
topics permitted, excluding NSFW. topics permitted, excluding NSFW.
Multimedia prohibited.<p> Multimedia prohibited.<p>
</td> </td>
<td class="td-red" headers="public inferencium"> <td class="red" headers="public inferencium">
No No
</td> </td>
</tr> </tr>

View File

@ -1,5 +1,5 @@
/* Inferencium - Website - CSS - Main */ /* Inferencium - Website - CSS - Main */
/* Version: 11.2.0-alpha.5 */ /* Version: 11.2.0-alpha.6 */
/* Copyright 2022 Jake Winters */ /* Copyright 2022 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause */ /* SPDX-License-Identifier: BSD-3-Clause */
@ -189,11 +189,11 @@ td {
text-align: center; text-align: center;
} }
td.td-desc { td.desc {
text-align: left; text-align: left;
} }
td.td-red { td.red {
background-color: #e50000; background-color: #e50000;
} }