blog-fs/pages/index.module.css

26 lines
369 B
CSS
Raw Normal View History

2021-05-02 10:42:38 +08:00
.index {
ol {
}
}
.item {
2021-05-02 13:05:12 +08:00
@apply my-2 mx-4 px-4 overflow-hidden;
2021-05-02 10:42:38 +08:00
@apply rounded-md shadow-sm hover:shadow;
@apply bg-gray-50 hover:bg-white;
2021-05-02 13:05:12 +08:00
:global(.dark) & {
@apply bg-gray-800;
}
2021-05-02 10:42:38 +08:00
.title {
2021-05-02 13:05:12 +08:00
@apply text-lg my-4;
2021-05-02 10:42:38 +08:00
}
.description {
2021-05-02 13:05:12 +08:00
@apply text-sm text-gray-600 leading-6 my-4;
:global(.dark) & {
@apply text-gray-400;
}
2021-05-02 10:42:38 +08:00
}
}