Spaces:
Configuration error
Configuration error
File size: 4,459 Bytes
7bbd534 |
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
/* LIGHT MODE + GENERAL */
.react-calendar {
border: none !important;
background-color: transparent !important;
font-family: 'Plus Jakarta Sans', sans-serif;
}
.react-calendar__navigation__prev2-button {
display: none;
}
.react-calendar__navigation__next2-button {
display: none;
}
.react-calendar__navigation {
align-items: center;
}
abbr[title] {
border-bottom: none;
-webkit-text-decoration: unset;
text-decoration: unset;
-webkit-text-decoration: unset;
-webkit-text-decoration: unset;
text-decoration: unset !important;
}
.react-calendar__navigation__prev-button {
background-color: #4318ff !important;
border-radius: 10px;
min-width: 34px !important;
height: 34px !important;
color: white;
}
.react-calendar__navigation__next-button {
background-color: #4318ff !important;
border-radius: 10px;
min-width: 34px !important;
width: 34px !important;
height: 34px !important;
color: white;
}
.react-calendar__navigation__label {
font-weight: 700 !important;
font-size: 18px;
}
.react-calendar__navigation__label:hover,
.react-calendar__navigation__label:focus {
background-color: unset !important;
border-radius: 10px;
}
.react-calendar__tile {
font-size: 12px;
display: flex;
align-items: center;
justify-content: center;
padding: 0px !important;
height: 34px !important;
color: #1b2559;
}
.react-calendar__month-view__weekdays {
background-color: #f4f7fe;
border-radius: 10px;
margin-bottom: 6px;
}
.react-calendar__tile--now,
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
background-color: #f4f7fe;
border-radius: 10px;
}
.react-calendar__month-view__days__day--neighboringMonth {
color: #b0bbd5;
}
.react-calendar__tile--active,
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
background: #4318ff;
border-radius: 10px;
color: white;
}
.react-calendar__tile--range,
.react-calendar__tile--range:enabled:hover,
.react-calendar__tile--range:enabled:focus {
background: #f4f7fe;
color: #4318ff;
border-radius: 0px;
}
.react-calendar__tile--rangeStart,
.react-calendar__tile--rangeStart:enabled:hover,
.react-calendar__tile--rangeStart:enabled:focus {
background: #4318ff;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
color: white;
}
.react-calendar__tile--rangeEnd,
.react-calendar__tile--rangeEnd:enabled:hover,
.react-calendar__tile--rangeEnd:enabled:focus {
background: #4318ff;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
color: white;
}
/* DARK MODE */
body.chakra-ui-dark .react-calendar {
border-radius: 30px;
}
body.chakra-ui-dark .react-calendar__navigation__prev-button {
background-color: #7551ff !important;
}
body.chakra-ui-dark .react-calendar__navigation__next-button {
background-color: #7551ff !important;
color: white;
}
body.chakra-ui-dark .react-calendar__tile {
color: white;
}
body.chakra-ui-dark .react-calendar__tile:enabled:hover,
body.chakra-ui-dark .react-calendar__tile:enabled:focus {
background-color: rgba(255, 255, 255, 0.1);
}
body.chakra-ui-dark .react-calendar__month-view__weekdays {
background-color: rgba(255, 255, 255, 0.1);
}
body.chakra-ui-dark .react-calendar__tile--now,
body.chakra-ui-dark .react-calendar__tile--now:enabled:hover,
body.chakra-ui-dark .react-calendar__tile--now:enabled:focus {
background-color: rgba(255, 255, 255, 0.1);
}
body.chakra-ui-dark .react-calendar__month-view__days__day--neighboringMonth {
color: #b0bbd5;
}
body.chakra-ui-dark .react-calendar__tile--active,
body.chakra-ui-dark .react-calendar__tile--active:enabled:hover,
body.chakra-ui-dark .react-calendar__tile--active:enabled:focus {
background: #7551ff;
color: white;
}
body.chakra-ui-dark .react-calendar__tile--range,
body.chakra-ui-dark .react-calendar__tile--range:enabled:hover,
body.chakra-ui-dark .react-calendar__tile--range:enabled:focus {
background: rgba(255, 255, 255, 0.1);
color: #7551ff;
}
body.chakra-ui-dark .react-calendar__tile--rangeStart,
body.chakra-ui-dark .react-calendar__tile--rangeStart:enabled:hover,
body.chakra-ui-dark .react-calendar__tile--rangeStart:enabled:focus {
background: #7551ff;
color: white;
}
body.chakra-ui-dark .react-calendar__tile--rangeEnd,
body.chakra-ui-dark .react-calendar__tile--rangeEnd:enabled:hover,
body.chakra-ui-dark .react-calendar__tile--rangeEnd:enabled:focus {
background: #7551ff;
color: white;
}
|