show first entry

This commit is contained in:
u80864958
2025-04-10 16:17:58 +02:00
commit fb2d784421
46 changed files with 15997 additions and 0 deletions

59
frontend/src/styles.css Normal file
View File

@ -0,0 +1,59 @@
/* You can add global styles to this file, and also import other style files */
@import "tailwindcss";
/* apply todo css */
.todo {
@layer base {
body {
@apply bg-gray-50 text-gray-800 font-sans leading-relaxed text-base;
}
h1 {
@apply text-3xl font-bold text-gray-900 mt-8 mb-4;
}
h2 {
@apply text-2xl font-semibold text-gray-800 mt-6 mb-3;
}
h3 {
@apply text-xl font-semibold text-gray-700 mt-5 mb-2;
}
h4,
h5,
h6 {
@apply text-xl font-medium text-gray-600 mt-4 mb-2;
}
a {
@apply text-blue-600 hover:text-blue-800 transition-colors underline;
}
ul,
ol {
@apply pl-6 mb-4;
}
li {
@apply mb-1;
}
table {
@apply w-full border-collapse shadow-sm bg-white my-6;
}
th,
td {
@apply border border-gray-200 px-4 py-2 text-left;
}
th {
@apply bg-gray-100 font-semibold;
}
tr:nth-child(even) {
@apply bg-gray-50;
}
}
}