mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
128 lines
2.0 KiB
CSS
128 lines
2.0 KiB
CSS
@tailwind base;
|
|
|
|
/* Write your own custom base styles here */
|
|
|
|
/* Start purging... */
|
|
@tailwind components;
|
|
/* Stop purging. */
|
|
|
|
/* Start purging... */
|
|
@tailwind utilities;
|
|
/* Stop purging. */
|
|
|
|
/* Your own custom utilities */
|
|
|
|
.fsw {
|
|
@apply flex flex-wrap -mx-3 mb-2;
|
|
}
|
|
|
|
.fs {
|
|
@apply w-full px-3 mb-2;
|
|
}
|
|
|
|
.flabel {
|
|
@apply block uppercase tracking-wide text-gray-700 text-xs font-bold mb-2;
|
|
}
|
|
|
|
.input-text {
|
|
@apply appearance-none bg-gray-100 text-gray-700 border rounded py-2 px-3 mb-3 leading-tight w-full;
|
|
}
|
|
|
|
.input-text:disabled {
|
|
@apply bg-gray-300 cursor-not-allowed;
|
|
}
|
|
|
|
.input-text:focus {
|
|
@apply outline-none bg-white;
|
|
}
|
|
|
|
.input-text.input-changed:invalid {
|
|
@apply border-red-500;
|
|
}
|
|
|
|
.ibtn {
|
|
@apply py-2 px-2 text-gray-400 w-10 h-10;
|
|
}
|
|
|
|
.ibtn:hover {
|
|
@apply text-gray-500;
|
|
}
|
|
|
|
.ibtn:active {
|
|
@apply text-gray-800;
|
|
}
|
|
|
|
.btn {
|
|
@apply font-bold py-2 px-4 rounded mx-2;
|
|
}
|
|
|
|
.btn:first-child {
|
|
@apply ml-0;
|
|
}
|
|
|
|
.btn-blue {
|
|
@apply bg-blue-500 text-white;
|
|
}
|
|
|
|
.btn-blue:hover {
|
|
@apply bg-blue-700;
|
|
}
|
|
|
|
.btn-red {
|
|
@apply bg-red-500 text-white;
|
|
}
|
|
|
|
.btn-red:hover {
|
|
@apply bg-red-700;
|
|
}
|
|
|
|
.btn-gray {
|
|
@apply bg-gray-500 text-white;
|
|
}
|
|
|
|
.btn-gray:hover {
|
|
@apply bg-gray-700;
|
|
}
|
|
|
|
.link {
|
|
@apply font-medium text-blue-500 underline;
|
|
}
|
|
|
|
.link:hover {
|
|
@apply text-blue-700;
|
|
}
|
|
|
|
@screen sm {
|
|
.fs {
|
|
@apply w-1/2 mb-0;
|
|
}
|
|
}
|
|
.DayPickerInput .input-text {
|
|
@apply w-full;
|
|
}
|
|
|
|
.DayPickerInput {
|
|
@apply w-1/3;
|
|
}
|
|
|
|
.datepicker
|
|
.DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
|
|
background-color: #f0f8ff !important;
|
|
color: #4a90e2;
|
|
}
|
|
.datepicker .DayPicker-Day {
|
|
border-radius: 0 !important;
|
|
}
|
|
.datepicker .DayPicker-Day--start {
|
|
border-top-left-radius: 50% !important;
|
|
border-bottom-left-radius: 50% !important;
|
|
}
|
|
.datepicker .DayPicker-Day--end {
|
|
border-top-right-radius: 50% !important;
|
|
border-bottom-right-radius: 50% !important;
|
|
}
|
|
.datepicker .DayPicker-Day--dayBooked:not(.DayPicker-Day--outside) {
|
|
color: #505050;
|
|
background-color: #fcc;
|
|
}
|