seasons can be added now

This commit is contained in:
2026-02-02 19:46:14 +11:00
parent 67bf84c3a6
commit ddfc0b7671
8 changed files with 860 additions and 6 deletions

View File

@@ -9,6 +9,7 @@
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
monospace;
--spacing: 0.25rem;
--breakpoint-lg: 64rem;
--breakpoint-xl: 80rem;
--breakpoint-2xl: 96rem;
--container-sm: 24rem;
@@ -33,6 +34,7 @@
--text-6xl--line-height: 1;
--text-9xl: 8rem;
--text-9xl--line-height: 1;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--tracking-tight: -0.025em;
@@ -241,6 +243,9 @@
.top-0 {
top: calc(var(--spacing) * 0);
}
.top-1\/2 {
top: calc(1/2 * 100%);
}
.top-4 {
top: calc(var(--spacing) * 4);
}
@@ -250,6 +255,9 @@
.right-0 {
right: calc(var(--spacing) * 0);
}
.right-3 {
right: calc(var(--spacing) * 3);
}
.right-5 {
right: calc(var(--spacing) * 5);
}
@@ -356,6 +364,9 @@
.h-1 {
height: calc(var(--spacing) * 1);
}
.h-5 {
height: calc(var(--spacing) * 5);
}
.h-16 {
height: calc(var(--spacing) * 16);
}
@@ -374,12 +385,18 @@
.min-h-\[calc\(100vh-200px\)\] {
min-height: calc(100vh - 200px);
}
.w-5 {
width: calc(var(--spacing) * 5);
}
.w-26 {
width: calc(var(--spacing) * 26);
}
.w-36 {
width: calc(var(--spacing) * 36);
}
.w-80 {
width: calc(var(--spacing) * 80);
}
.w-fit {
width: fit-content;
}
@@ -407,6 +424,9 @@
.max-w-screen-2xl {
max-width: var(--breakpoint-2xl);
}
.max-w-screen-lg {
max-width: var(--breakpoint-lg);
}
.max-w-screen-xl {
max-width: var(--breakpoint-xl);
}
@@ -419,9 +439,16 @@
.flex-1 {
flex: 1;
}
.flex-shrink-0 {
flex-shrink: 0;
}
.shrink-0 {
flex-shrink: 0;
}
.-translate-y-1\/2 {
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
translate: var(--tw-translate-x) var(--tw-translate-y);
}
.transform {
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
@@ -437,6 +464,9 @@
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.flex-col {
flex-direction: column;
}
@@ -461,6 +491,9 @@
.justify-end {
justify-content: flex-end;
}
.gap-1 {
gap: calc(var(--spacing) * 1);
}
.gap-2 {
gap: calc(var(--spacing) * 2);
}
@@ -496,6 +529,9 @@
.gap-y-4 {
row-gap: calc(var(--spacing) * 4);
}
.gap-y-5 {
row-gap: calc(var(--spacing) * 5);
}
.divide-y {
:where(& > :not(:last-child)) {
--tw-divide-y-reverse: 0;
@@ -633,6 +669,9 @@
background-color: color-mix(in oklab, var(--yellow) 10%, transparent);
}
}
.p-1 {
padding: calc(var(--spacing) * 1);
}
.p-2 {
padding: calc(var(--spacing) * 2);
}
@@ -678,6 +717,9 @@
.py-8 {
padding-block: calc(var(--spacing) * 8);
}
.pr-10 {
padding-right: calc(var(--spacing) * 10);
}
.pb-6 {
padding-bottom: calc(var(--spacing) * 6);
}
@@ -733,6 +775,10 @@
--tw-font-weight: var(--font-weight-bold);
font-weight: var(--font-weight-bold);
}
.font-medium {
--tw-font-weight: var(--font-weight-medium);
font-weight: var(--font-weight-medium);
}
.font-semibold {
--tw-font-weight: var(--font-weight-semibold);
font-weight: var(--font-weight-semibold);
@@ -750,6 +796,9 @@
.whitespace-pre-wrap {
white-space: pre-wrap;
}
.text-base {
color: var(--base);
}
.text-blue {
color: var(--blue);
}
@@ -780,6 +829,9 @@
.text-yellow {
color: var(--yellow);
}
.uppercase {
text-transform: uppercase;
}
.italic {
font-style: italic;
}
@@ -894,6 +946,13 @@
}
}
}
.hover\:bg-surface1 {
&:hover {
@media (hover: hover) {
background-color: var(--surface1);
}
}
}
.hover\:bg-surface2 {
&:hover {
@media (hover: hover) {
@@ -984,6 +1043,19 @@
cursor: default;
}
}
.disabled\:cursor-not-allowed {
&:disabled {
cursor: not-allowed;
}
}
.disabled\:bg-blue\/40 {
&:disabled {
background-color: var(--blue);
@supports (color: color-mix(in lab, red, red)) {
background-color: color-mix(in oklab, var(--blue) 40%, transparent);
}
}
}
.disabled\:bg-green\/60 {
&:disabled {
background-color: var(--green);
@@ -1047,6 +1119,11 @@
padding: calc(var(--spacing) * 7);
}
}
.sm\:p-8 {
@media (width >= 40rem) {
padding: calc(var(--spacing) * 8);
}
}
.sm\:px-6 {
@media (width >= 40rem) {
padding-inline: calc(var(--spacing) * 6);
@@ -1227,6 +1304,21 @@
font-weight: 700;
font-style: italic;
}
@property --tw-translate-x {
syntax: "*";
inherits: false;
initial-value: 0;
}
@property --tw-translate-y {
syntax: "*";
inherits: false;
initial-value: 0;
}
@property --tw-translate-z {
syntax: "*";
inherits: false;
initial-value: 0;
}
@property --tw-rotate-x {
syntax: "*";
inherits: false;
@@ -1342,6 +1434,9 @@
@layer properties {
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
*, ::before, ::after, ::backdrop {
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-translate-z: 0;
--tw-rotate-x: initial;
--tw-rotate-y: initial;
--tw-rotate-z: initial;