Add table data description CSS class

This commit is contained in:
inference 2023-09-02 14:04:29 +01:00
parent da2a8c8b98
commit c918ab22ec
Signed by: inference
SSH Key Fingerprint: SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc
2 changed files with 13 additions and 9 deletions

View File

@ -5,7 +5,7 @@
<!-- Copyright 2022 Jake Winters --> <!-- Copyright 2022 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause --> <!-- SPDX-License-Identifier: BSD-3-Clause -->
<!-- Version: 5.2.0.99 --> <!-- Version: 5.2.0.100 -->
<html> <html>
@ -273,7 +273,7 @@
<td><img src="asset/img/google-pixel_6.png" width="100px" height="100px"/><br> <td><img src="asset/img/google-pixel_6.png" width="100px" height="100px"/><br>
<br> <br>
Google Pixel</td> Google Pixel</td>
<td>Google Pixel devices are the best Android devices <td class="td-desc">Google Pixel devices are the best Android devices
available on the market for available on the market for
<a href="https://security.googleblog.com/2021/10/pixel-6-setting-new-standard-for-mobile.html">security and privacy</a>.<br> <a href="https://security.googleblog.com/2021/10/pixel-6-setting-new-standard-for-mobile.html">security and privacy</a>.<br>
<br> <br>
@ -367,7 +367,7 @@
<td><img src="asset/img/logo-gentoo_linux.png" width="100px" height="100px"/><br> <td><img src="asset/img/logo-gentoo_linux.png" width="100px" height="100px"/><br>
<br> <br>
Gentoo Linux</td> Gentoo Linux</td>
<td><a href="https://www.gentoo.org/">Gentoo Linux</a> <td class="td-desc"><a href="https://www.gentoo.org/">Gentoo Linux</a>
is a highly modular, source-based, is a highly modular, source-based,
Linux-based operating system which allows vast Linux-based operating system which allows vast
customisation to tailor the operating system to suit customisation to tailor the operating system to suit
@ -400,7 +400,7 @@
<td><img src="asset/img/logo-chromium.png" width="100px" height="100px"/><br> <td><img src="asset/img/logo-chromium.png" width="100px" height="100px"/><br>
<br> <br>
Chromium</td> Chromium</td>
<td><a href="https://chromium.org/">Chromium</a> <td class="td-desc"><a href="https://chromium.org/">Chromium</a>
is a highly secure web browser which is is a highly secure web browser which is
often ahead of other web browsers in security aspects. often ahead of other web browsers in security aspects.
It has a dedicated security team and a very impressive It has a dedicated security team and a very impressive
@ -434,7 +434,7 @@
<td><img src="asset/img/logo-grapheneos.png" width="100px" height="100px"/><br> <td><img src="asset/img/logo-grapheneos.png" width="100px" height="100px"/><br>
<br> <br>
GrapheneOS</td> GrapheneOS</td>
<td><a href="https://grapheneos.org/">GrapheneOS</a> <td class="td-desc"><a href="https://grapheneos.org/">GrapheneOS</a>
is a security-hardened, is a security-hardened,
privacy-hardened, secure-by-default, Android-based privacy-hardened, secure-by-default, Android-based
operating system which implements extensive, systemic operating system which implements extensive, systemic
@ -478,7 +478,7 @@
<td><img src="asset/img/logo-vanadium.png" width="100px" height="100px"/><br> <td><img src="asset/img/logo-vanadium.png" width="100px" height="100px"/><br>
<br> <br>
Vanadium</td> Vanadium</td>
<td>Vanadium is a security-hardened, privacy-hardened <td class="td-desc">Vanadium is a security-hardened, privacy-hardened
Chromium-based web browser which utilises GrapheneOS' Chromium-based web browser which utilises GrapheneOS'
operating system hardening to implement stronger operating system hardening to implement stronger
defenses to the already very secure Chromium web defenses to the already very secure Chromium web
@ -501,7 +501,7 @@
<td><img src="asset/img/logo-molly.png" width="100px" height="100px"><br> <td><img src="asset/img/logo-molly.png" width="100px" height="100px"><br>
<br> <br>
Molly</td> Molly</td>
<td><a href="https://molly.im/">Molly</a> <td class="td-desc"><a href="https://molly.im/">Molly</a>
is a security-hardened, privacy-hardened is a security-hardened, privacy-hardened
<a href="https://signal.org/">Signal</a> <a href="https://signal.org/">Signal</a>
client which hardens Signal by using a client which hardens Signal by using a
@ -535,7 +535,7 @@
<td><img src="asset/img/logo-conversations.png" width="100px" height="100px"><br> <td><img src="asset/img/logo-conversations.png" width="100px" height="100px"><br>
<br> <br>
Conversations</td> Conversations</td>
<td><a href="https://conversations.im/">Conversations</a> <td class="td-desc"><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>
client which serves as the de facto XMPP client which serves as the de facto XMPP

View File

@ -3,7 +3,7 @@
/* Copyright 2022 Jake Winters */ /* Copyright 2022 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause */ /* SPDX-License-Identifier: BSD-3-Clause */
/* Version: 10.3.0.42 */ /* Version: 10.3.0.43 */
/* Body */ /* Body */
@ -206,6 +206,10 @@ td {
text-align: center; text-align: center;
} }
.td-desc {
text-align: left;
}
/* Sidebar */ /* Sidebar */
.sidebar { .sidebar {