Webdesign

This commit is contained in:
Arnold Dechamps 2024-04-14 17:56:03 +02:00
parent 0ac8a1e9c7
commit 4889a93c64
No known key found for this signature in database
GPG key ID: AE66543374E41C89
4 changed files with 32 additions and 2 deletions

View file

@ -771,6 +771,11 @@ video {
font-weight: 600; font-weight: 600;
} }
.text-blue-600 {
--tw-text-opacity: 1;
color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-gray-500 { .text-gray-500 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(107 114 128 / var(--tw-text-opacity)); color: rgb(107 114 128 / var(--tw-text-opacity));
@ -932,6 +937,11 @@ video {
background-color: rgb(17 24 39 / var(--tw-bg-opacity)); background-color: rgb(17 24 39 / var(--tw-bg-opacity));
} }
.dark\:text-blue-500 {
--tw-text-opacity: 1;
color: rgb(59 130 246 / var(--tw-text-opacity));
}
.dark\:text-gray-400 { .dark\:text-gray-400 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(156 163 175 / var(--tw-text-opacity)); color: rgb(156 163 175 / var(--tw-text-opacity));

File diff suppressed because one or more lines are too long

View file

@ -771,6 +771,11 @@ video {
font-weight: 600; font-weight: 600;
} }
.text-blue-600 {
--tw-text-opacity: 1;
color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-gray-500 { .text-gray-500 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(107 114 128 / var(--tw-text-opacity)); color: rgb(107 114 128 / var(--tw-text-opacity));
@ -932,6 +937,11 @@ video {
background-color: rgb(17 24 39 / var(--tw-bg-opacity)); background-color: rgb(17 24 39 / var(--tw-bg-opacity));
} }
.dark\:text-blue-500 {
--tw-text-opacity: 1;
color: rgb(59 130 246 / var(--tw-text-opacity));
}
.dark\:text-gray-400 { .dark\:text-gray-400 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(156 163 175 / var(--tw-text-opacity)); color: rgb(156 163 175 / var(--tw-text-opacity));

View file

@ -12,6 +12,7 @@
<th class="border border-slate-600 text-green-600">IPv6</th> <th class="border border-slate-600 text-green-600">IPv6</th>
<th class="border border-slate-600">Strongest DNSSEC algo</th> <th class="border border-slate-600">Strongest DNSSEC algo</th>
<th class="border border-slate-600"># DNSSEC keys</th> <th class="border border-slate-600"># DNSSEC keys</th>
<th class="border border-slate-600">RDAP</th>
<th class="border border-slate-600">Organisation</th> <th class="border border-slate-600">Organisation</th>
</tr> </tr>
</thead> </thead>
@ -22,9 +23,17 @@
<td class="border border-slate-700 text-l-blue-600">{{ TLD.nsamount }}</td> <td class="border border-slate-700 text-l-blue-600">{{ TLD.nsamount }}</td>
<td class="border border-slate-700 text-red-700">{{ TLD.v4nsamount }}</td> <td class="border border-slate-700 text-red-700">{{ TLD.v4nsamount }}</td>
<td class="border border-slate-700 text-green-600">{{ TLD.v6nsamount }}</td> <td class="border border-slate-700 text-green-600">{{ TLD.v6nsamount }}</td>
<td class="border border-slate-700">{% if TLD.dnssec != 400 %} Algo {{ TLD.dnssec }} {{ TLD.get_dnssec_display }} {% else %} {{ TLD.get_dnssec_display }} {% endif %}</td> <td class="border border-slate-700">{% if TLD.dnssec != 400 %} Algo {{ TLD.dnssec }}
{{ TLD.get_dnssec_display }} {% else %} {{ TLD.get_dnssec_display }} {% endif %}</td>
<td class="border border-slate-700">{{ TLD.amountofkeys }}</td> <td class="border border-slate-700">{{ TLD.amountofkeys }}</td>
<td class="border border-slate-700">{{ TLD.organisation }}</td> {% if TLD.rdap == "Yes" %}
<td class="border border-slate-700 text-green-600">{{ TLD.rdap }}</td>
{% else %}
<td class="border border-slate-700 text-red-700">{{ TLD.rdap }}</td>
{% endif %}
<td class="border border-slate-700"><a href="{{ TLD.link }}"
class="font-medium text-blue-600 dark:text-blue-500 hover:underline">{{ TLD.organisation }}</a>
</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>