Skip to content
Snippets Groups Projects
tailwind.css 2.97 KiB
Newer Older
Richard Blechinger's avatar
Richard Blechinger committed
/* Note that any color adjustments here must also be reflected in custom.css!! */

@tailwind components;
@tailwind utilities;

:root {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  --primary: theme('colors.gray.800');
  --info: theme('colors.aura.purple');

  /* TODO: remove these once we include the tailwind base module */
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
Richard Blechinger's avatar
Richard Blechinger committed
}

header a,
footer a {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  color: theme('colors.gray.50');
Richard Blechinger's avatar
Richard Blechinger committed
}

header a:hover,
footer a:hover {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  color: theme('colors.gray.400');
Richard Blechinger's avatar
Richard Blechinger committed
}

.fc-event {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  padding: 1px 2px;
  background-color: theme('colors.gray.600');
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  border-color: theme('colors.gray.900');
  color: white;
Richard Blechinger's avatar
Richard Blechinger committed
}

.otherShow {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background-color: theme('colors.gray.300');
  border-color: theme('colors.gray.400');
  color: theme('colors.gray.900');
Richard Blechinger's avatar
Richard Blechinger committed
}

.otherShow:hover {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  color: theme('colors.gray.900');
  cursor: pointer;
.currentShow {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background-color: theme('colors.aura.purple');
  border-color: theme('colors.indigo.800');
  color: white;
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
.currentShow.emptySlot {
  background-color: theme('colors.red.600');
  border-color: theme('colors.red.800');
  color: white;
Richard Blechinger's avatar
Richard Blechinger committed
}

.noconflict {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background-color: theme('colors.aura.purple') !important;
  border-color: theme('colors.indigo.800') !important;
  color: white;
Richard Blechinger's avatar
Richard Blechinger committed
}

.timeslot-discarded {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background-color: theme('colors.red.500');
  opacity: 0.5;
  text-decoration: line-through !important;
  color: white;
Richard Blechinger's avatar
Richard Blechinger committed
}

.timeslot-accepted {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background-color: theme('colors.aura.purple');
  border-color: theme('colors.indigo.800');
Richard Blechinger's avatar
Richard Blechinger committed
}

.timeslot-partly {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background-color: theme('colors.aura.purple');
  border-color: theme('colors.indigo.800');
  opacity: 0.5;
  font-weight: bold;
thead .fc-day {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  padding: 0.5rem 0;
thead .fc-day a {
  color: inherit;
}

thead .fc-day:hover {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background: theme('colors.gray.200');
  cursor: pointer;
thead .fc-day-selected {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background: theme('colors.red.500');
  color: white;
thead .fc-day-selected:hover {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  background: #a490e0;
  color: white;
.is-mismatched {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  color: var(--orange);