jonbio/css/tailwind.css

61 lines
993 B
CSS
Raw Normal View History

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;
}
.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;
}
.csl-entry {
@apply my-5;
}
2024-07-30 14:34:19 -04:00
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
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
}
2023-11-11 12:42:05 +08:00
.katex-display {
overflow: auto hidden;
}
2024-04-17 15:49:10 +08:00
.content-header-link {
opacity: 0;
margin-left: -24px;
padding-right: 4px;
}
.content-header:hover .content-header-link,
.content-header-link:hover {
opacity: 1;
}
.linkicon {
display: inline-block;
vertical-align: middle;
}