Change welcome page to tutorial steps (#177)

This commit is contained in:
Leendert de Borst
2024-10-27 20:45:30 +01:00
parent bc6c7a10dc
commit e2be93ec85
2 changed files with 198 additions and 41 deletions

View File

@@ -868,6 +868,10 @@ video {
display: grid;
}
.contents {
display: contents;
}
.hidden {
display: none;
}
@@ -1068,6 +1072,10 @@ video {
list-style-type: none;
}
.list-decimal {
list-style-type: decimal;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
@@ -1180,6 +1188,12 @@ video {
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
--tw-divide-y-reverse: 0;
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
@@ -2399,6 +2413,11 @@ video {
color: rgb(250 204 21 / var(--tw-text-opacity));
}
.dark\:text-blue-200:is(.dark *) {
--tw-text-opacity: 1;
color: rgb(191 219 254 / var(--tw-text-opacity));
}
.dark\:placeholder-gray-400:is(.dark *)::-moz-placeholder {
--tw-placeholder-opacity: 1;
color: rgb(156 163 175 / var(--tw-placeholder-opacity));
@@ -2749,6 +2768,10 @@ video {
max-width: 36rem;
}
.lg\:max-w-4xl {
max-width: 56rem;
}
.lg\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}