Fixed up dark mode vs. not and added a linkedin mobil copy.

This commit is contained in:
Zed A. Shaw 2025-08-14 00:37:02 -04:00
parent bf1426261d
commit 2477603190
12 changed files with 758 additions and 491 deletions

View file

@ -50,7 +50,7 @@ card > middle {
}
label {
@apply font-bold text-gray-950 dark:text-white;
@apply font-bold text-gray-100;
}
input {
@ -62,7 +62,7 @@ input::placeholder {
}
button {
@apply rounded-sm shadow-sm bg-gray-300 text-gray-950 p-3;
@apply rounded-sm shadow-sm bg-gray-600 text-gray-50 dark:bg-gray-300 dark:text-gray-950 p-3;
}
@utility btn-hover {
@ -119,10 +119,10 @@ shape.video {
block {
@apply flex flex-col pl-4 pr-4 pb-10 pt-4;
@apply flex flex-col pl-4 pr-4 pb-10 pt-4 gap-4;
}
block.horizontal {
bar {
@apply flex flex-row p-4 gap-4;
}
@ -153,3 +153,15 @@ grid {
hr {
visibility: hidden;
}
table {
@apply bg-gray-200 dark:bg-gray-800 shadow-lg rounded-sm;
}
@utility table-header {
@apply text-gray-50 bg-gray-950 *:border-x *:border-black;
}
@utility table-row {
@apply *:border-2 *:border-black *:p-1 hover:bg-gray-100 hover:text-gray-950;
}