added reading of cards from data for template started migrating configs to all nix

This commit is contained in:
specCon18 2023-08-10 18:41:43 -04:00
parent 25f70e849b
commit 60f28672d3
15 changed files with 646 additions and 46 deletions

View file

@ -551,6 +551,30 @@ video {
display: flex;
}
.table {
display: table;
}
.h-6 {
height: 1.5rem;
}
.h-8 {
height: 2rem;
}
.w-6 {
width: 1.5rem;
}
.w-8 {
width: 2rem;
}
.border-collapse {
border-collapse: collapse;
}
.flex-col {
flex-direction: column;
}
@ -559,8 +583,27 @@ video {
align-items: center;
}
.rounded-lg {
border-radius: 0.5rem;
.rounded-xl {
border-radius: 0.75rem;
}
.border-2 {
border-width: 2px;
}
.border-gray-950 {
--tw-border-opacity: 1;
border-color: rgb(3 7 18 / var(--tw-border-opacity));
}
.bg-gray-300 {
--tw-bg-opacity: 1;
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.bg-gray-500 {
--tw-bg-opacity: 1;
background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
.bg-purple-500 {
@ -573,8 +616,12 @@ video {
background-color: rgb(51 65 85 / var(--tw-bg-opacity));
}
.p-4 {
padding: 1rem;
.p-2 {
padding: 0.5rem;
}
.text-center {
text-align: center;
}
.text-2xl {
@ -582,6 +629,11 @@ video {
line-height: 2rem;
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
@ -591,6 +643,16 @@ video {
font-weight: 700;
}
.text-gray-100 {
--tw-text-opacity: 1;
color: rgb(243 244 246 / var(--tw-text-opacity));
}
.text-gray-900 {
--tw-text-opacity: 1;
color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));