Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* Note that any color adjustments here must also be reflected in custom.css!! */
@tailwind components;
@tailwind utilities;
:root {
--primary: theme('colors.gray.800');
--info: theme('colors.aura.purple');
}
header a,
footer a {
color: theme('colors.gray.50');
}
header a:hover,
footer a:hover {
color: theme('colors.gray.400');
}
.fc-event {
padding: 1px 2px;
background-color: theme('colors.gray.800');
border-color: theme('colors.gray.900');
color: white;
}
.fc-bg {
}
.otherShow {
background-color: theme('colors.gray.300');
border-color: theme('colors.gray.400');
color: theme('colors.gray.900');
}
.otherShow:hover {
color: theme('colors.gray.900');
cursor: pointer;
}
a.currentShow {
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
color: white;
}
.conflict {
background-color: theme('colors.red.600');
border-color: theme('colors.red.800');
color: white;
}
.noconflict {
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
color: white;
}
.timeslot-discarded {
background-color: theme('colors.red.500');
opacity: 0.5;
text-decoration: line-through !important;
color: white;
}
.timeslot-accepted {
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
}
.timeslot-partly {
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
opacity: 0.5;
font-weight: bold;
}