2021-01-09 17:50:45 +08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2021-12-19 12:06:08 +01:00
|
|
|
.task-list-item::before {
|
2021-01-10 15:14:26 +08:00
|
|
|
@apply hidden;
|
2021-01-09 17:50:45 +08:00
|
|
|
}
|
|
|
|
|
2021-12-19 12:06:08 +01:00
|
|
|
.task-list-item {
|
|
|
|
@apply list-none;
|
|
|
|
}
|
|
|
|
|
2021-12-27 16:31:22 +08:00
|
|
|
.footnotes {
|
2023-07-07 11:17:22 +08:00
|
|
|
@apply mt-12 border-t border-gray-200 pt-8 dark:border-gray-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.data-footnote-backref {
|
|
|
|
@apply no-underline;
|
2021-12-27 16:31:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.csl-entry {
|
|
|
|
@apply my-5;
|
|
|
|
}
|
|
|
|
|
2021-09-10 23:23:47 +08:00
|
|
|
/* https://stackoverflow.com/questions/61083813/how-to-avoid-internal-autofill-selected-style-to-be-applied */
|
|
|
|
input:-webkit-autofill,
|
|
|
|
input:-webkit-autofill:focus {
|
2023-07-22 16:18:02 +08:00
|
|
|
transition:
|
|
|
|
background-color 600000s 0s,
|
|
|
|
color 600000s 0s;
|
2021-09-10 23:23:47 +08:00
|
|
|
}
|