jonbio/css/tailwind.css

37 lines
620 B
CSS
Raw Normal View History

2021-01-09 17:50:45 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
.remark-code-title {
2021-01-12 23:35:36 +08:00
@apply px-5 py-3 font-mono text-sm font-bold text-gray-200 bg-gray-700 rounded-t;
2021-01-09 17:50:45 +08:00
}
2021-01-10 15:14:26 +08:00
.remark-code-title + div > pre {
2021-01-10 15:14:26 +08:00
@apply mt-0 rounded-t-none;
2021-01-09 17:50:45 +08:00
}
.task-list-item:before {
2021-01-10 15:14:26 +08:00
@apply hidden;
2021-01-09 17:50:45 +08:00
}
.code-highlight {
@apply float-left min-w-full;
}
2021-06-29 18:09:37 +08:00
.code-line {
@apply block pl-4 pr-4 -mx-4 border-l-4 border-gray-800;
2021-06-29 18:09:37 +08:00
}
.highlight-line {
@apply -mx-4 bg-gray-700 bg-opacity-50 border-l-4 border-primary-500;
}
.line-number::before {
@apply pr-4 -ml-2 text-gray-400;
content: attr(line);
}
2021-01-09 17:50:45 +08:00
html {
scroll-behavior: smooth;
}