infoalloggi-monorepo/apps/infoalloggi/src/styles/globals.css
Marco Pedone 1fc855393f Refactor Annuncio Card Component and Remove Legacy Code
- Updated `CardAnnuncio` component to enhance functionality and styling.
- Removed `CardAnnuncio2` component as it was redundant.
- Added new icons and badges for better visual representation of availability and status.
- Improved layout and responsiveness of the card.
- Updated translations in English and Italian for consistency.
- Enhanced pagination controls in the `Annunci` page with new button styles.
- Adjusted footer components to accept additional class names for customization.
- Cleaned up unused CSS animations and styles in `globals.css`.
- Modified server-side controller to include homepage field in the Annuncio data structure.
2025-11-03 18:49:27 +01:00

316 lines
No EOL
7.6 KiB
CSS

@import "tailwindcss";
@import "tw-animate-css";
@plugin 'tailwind-scrollbar' {
nocompatible: true;
preferredStrategy: "pseudoelements";
}
@plugin "@tailwindcss/forms";
@plugin '@tailwindcss/typography';
@custom-variant dark (&:is(.dark *));
@custom-variant search-cancel (&::-webkit-search-cancel-button);
@utility stripes-* {
background-image: linear-gradient(45deg,
--value([color]) 12.5%,
transparent 12.5%,
transparent 50%,
--value([color]) 50%,
--value([color]) 62.5%,
transparent 62.5%,
transparent 100%);
background-size: 10.66px 10.66px;
}
@theme inline {
--font-sans: var(--font-inter);
--font-mono: var(--font-roboto-mono);
--breakpoint-navqry: 56.25rem;
--breakpoint-xxs: 20rem;
--breakpoint-xs: 30rem;
--breakpoint-3xl: 120rem;
--breakpoint-4xl: 160rem;
--breakpoint-5xl: 192rem;
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--color-background: var(--background);
--color-background2: var(--background2);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--color-chart-1: var(--chart-1);
--color-chart-2: var(--chart-2);
--color-chart-3: var(--chart-3);
--color-chart-4: var(--chart-4);
--color-chart-5: var(--chart-5);
--color-sidebar: var(--sidebar);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
--color-transitorio: var(--color-sky-500);
--color-stabile: var(--color-orange-500);
--accordion-down: accordion-down 0.2s ease-out;
--accordion-up: accordion-up 0.2s ease-out;
--caret-blink: caret-blink 1.25s ease-out infinite;
@keyframes accordion-down {
0% {
height: 0;
}
100% {
height: var(--radix-accordion-content-height);
}
}
@keyframes accordion-up {
0% {
height: var(--radix-accordion-content-height);
}
100% {
height: 0;
}
}
@keyframes collapsible-down {
0% {
height: 0;
}
100% {
height: var(--radix-collapsible-content-height);
}
}
@keyframes collapsible-up {
0% {
height: var(--radix-collapsible-content-height);
}
100% {
height: 0;
}
}
--animate-accordion-down: accordion-down 0.3s ease-out;
--animate-accordion-up: accordion-up 0.3s ease-out;
--animate-collapsible-down: collapsible-down 0.3s ease-out;
--animate-collapsible-up: collapsible-up 0.3s ease-in;
@keyframes caret-blink {
0%,
70%,
100%: {
opacity: 1;
}
20%,
50%: {
opacity: 0;
}
}
--animate-expand: expand 0.3s ease-out forwards;
@keyframes expand {
0% {
width: 0%;
/*opacity: 0;*/
}
100% {
width: 100%;
/*opacity: 1;*/
}
}
}
:root {
--radius: 0.625rem;
--background: oklch(1 0 0);
--background2: oklch(95.041% 0.02791 62.217);
--foreground: oklch(0.145 0 0);
--card: oklch(1 0 0);
--card-foreground: oklch(0.145 0 0);
--popover: oklch(1 0 0);
--popover-foreground: oklch(0.145 0 0);
--primary: oklch(0.205 0 0);
--primary-foreground: oklch(0.985 0 0);
--secondary: oklch(0.97 0 0);
--secondary-foreground: oklch(0.205 0 0);
--muted: oklch(0.97 0 0);
--muted-foreground: oklch(0.556 0 0);
--accent: oklch(0.97 0 0);
--accent-foreground: oklch(0.205 0 0);
--destructive: oklch(0.577 0.245 27.325);
--border: oklch(0.922 0 0);
--input: oklch(0.922 0 0);
--ring: oklch(0.708 0 0);
--chart-1: oklch(0.646 0.222 41.116);
--chart-2: oklch(0.6 0.118 184.704);
--chart-3: oklch(0.398 0.07 227.392);
--chart-4: oklch(0.828 0.189 84.429);
--chart-5: oklch(0.769 0.188 70.08);
--sidebar: oklch(0.985 0 0);
--sidebar-foreground: oklch(0.145 0 0);
--sidebar-primary: oklch(0.205 0 0);
--sidebar-primary-foreground: oklch(0.985 0 0);
--sidebar-accent: oklch(0.97 0 0);
--sidebar-accent-foreground: oklch(0.205 0 0);
--sidebar-border: oklch(0.922 0 0);
--sidebar-ring: oklch(0.708 0 0);
}
.dark {
--background: oklch(0.145 0 0);
--foreground: oklch(0.985 0 0);
--card: oklch(0.205 0 0);
--card-foreground: oklch(0.985 0 0);
--popover: oklch(0.205 0 0);
--popover-foreground: oklch(0.985 0 0);
--primary: oklch(0.922 0 0);
--primary-foreground: oklch(0.205 0 0);
--secondary: oklch(0.269 0 0);
--secondary-foreground: oklch(0.985 0 0);
--muted: oklch(0.269 0 0);
--muted-foreground: oklch(0.708 0 0);
--accent: oklch(0.269 0 0);
--accent-foreground: oklch(0.985 0 0);
--destructive: oklch(0.704 0.191 22.216);
--border: oklch(1 0 0 / 10%);
--input: oklch(1 0 0 / 15%);
--ring: oklch(0.556 0 0);
--chart-1: oklch(0.488 0.243 264.376);
--chart-2: oklch(0.696 0.17 162.48);
--chart-3: oklch(0.769 0.188 70.08);
--chart-4: oklch(0.627 0.265 303.9);
--chart-5: oklch(0.645 0.246 16.439);
--sidebar: oklch(0.205 0 0);
--sidebar-foreground: oklch(0.985 0 0);
--sidebar-primary: oklch(0.488 0.243 264.376);
--sidebar-primary-foreground: oklch(0.985 0 0);
--sidebar-accent: oklch(0.269 0 0);
--sidebar-accent-foreground: oklch(0.985 0 0);
--sidebar-border: oklch(1 0 0 / 10%);
--sidebar-ring: oklch(0.556 0 0);
}
@layer base {
html {
@apply scrollbar-none;
/*@apply scroll-smooth;*/
}
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
font-feature-settings:
"rlig" 1,
"calt" 1;
font-synthesis-weight: none;
text-rendering: optimizeLegibility;
}
.leaflet-pane {
@apply !z-0;
}
.leaflet-bottom {
@apply !z-0;
}
.leaflet-control {
@apply !z-0;
}
.leaflet-top {
@apply !z-0;
}
/* .leaflet-control-attribution {
@apply !sr-only;
} */
}
@utility dropdown-override {
@apply !rounded-md !p-2 !shadow-xs;
}
@utility step {
counter-increment: step;
&::before {
@apply border-background bg-muted absolute inline-flex size-9 items-center justify-center rounded-full border-4 text-center -indent-px font-mono text-base font-medium;
@apply mt-[-0.25rem] ml-[-3.125rem];
content: counter(step);
}
}
@utility scrollbar-default {
@apply scrollbar-thin scrollbar-track-muted scrollbar-thumb-neutral-300 scrollbar-track-rounded-full scrollbar-thumb-rounded-full;
}
@utility ph-input-fix {
@apply !py-2 hover:border-muted-foreground focus:border-foreground focus:ring-foreground focus-visible:ring-1
}
@utility no-spinner {
-moz-appearance: textfield;
appearance: textfield;
&::-webkit-outer-spin-button {
margin: 0;
-webkit-appearance: none;
}
&::-webkit-inner-spin-button {
margin: 0;
-webkit-appearance: none;
}
}
@media print {
@page {
margin: 0.5cm;
}
body {
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
}