2024-11-04 22:52:24 +01:00
|
|
|
<?php
|
|
|
|
// Making sure the file is included and not accessed directly.
|
|
|
|
if(basename(__FILE__) == basename($_SERVER["SCRIPT_FILENAME"])) {
|
|
|
|
header('HTTP/1.1 403 Forbidden'); die();
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<a id="text-misc"></a>
|
|
|
|
<div class="p-xs b r-s bkgd-grid mt-m">
|
|
|
|
<h2 class="t-w-500 t-size-14">Text<i class="fa-solid fa-chevron-right mx-xs"></i>Miscellaneous
|
|
|
|
<i class="fa-solid fa-ellipsis f-right"></i></h2>
|
|
|
|
</div>
|
|
|
|
<section class="p-s">
|
2024-11-23 17:59:48 +01:00
|
|
|
<table class="table-stylish r-l border o-hidden table-p-xs table-v-center">
|
2024-11-04 22:52:24 +01:00
|
|
|
<thead>
|
|
|
|
<th>Style</th>
|
|
|
|
<th>Example</th>
|
|
|
|
<th>Classes</th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><p class="t-bold">No wrap</p></td>
|
2024-11-26 21:06:28 +01:00
|
|
|
<td><p class="t-nowrap">Cannot really be demonstrated</p></td>
|
2024-11-20 22:53:18 +01:00
|
|
|
<td><span class="code">.t-nowrap</span></td>
|
2024-11-04 22:52:24 +01:00
|
|
|
</tr>
|
2024-11-26 21:06:28 +01:00
|
|
|
<tr>
|
|
|
|
<td><p class="t-bold">No Select</p></td>
|
|
|
|
<td><p class="t-noselect">Cannot be selected</p></td>
|
|
|
|
<td><span class="code">.t-noselect</span></td>
|
|
|
|
</tr>
|
2024-11-04 22:52:24 +01:00
|
|
|
<tr>
|
|
|
|
<td><p class="t-bold">Half muted</p></td>
|
|
|
|
<td><p class="t-half-muted">Half muted</p></td>
|
2024-11-20 22:53:18 +01:00
|
|
|
<td><span class="code">.t-half-muted</span></td>
|
2024-11-04 22:52:24 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><p class="t-bold">Muted</p></td>
|
|
|
|
<td><p class="t-muted">Muted text</p></td>
|
2024-11-20 22:53:18 +01:00
|
|
|
<td><span class="code">.t-muted</span></td>
|
2024-11-04 22:52:24 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><p class="t-bold">Super muted</p></td>
|
|
|
|
<td><p class="t-super-muted">Super Muted</p></td>
|
2024-11-20 22:53:18 +01:00
|
|
|
<td><span class="code">.t-super-muted</span></td>
|
2024-11-04 22:52:24 +01:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</section>
|