blog-fs/pages/index.module.css

26 lines
401 B
CSS
Raw Permalink 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;
2021-07-04 08:47:59 +08:00
@apply bg-gray-50 hover:bg-white cursor-pointer;
2021-05-02 13:05:12 +08:00
:global(.dark) & {
@apply bg-gray-800;
}
2021-07-04 08:47:59 +08:00
2021-05-02 10:42:38 +08:00
.title {
2021-07-04 08:47:59 +08:00
@apply text-xl my-4;
2021-05-02 10:42:38 +08:00
}
.description {
2021-07-04 08:47:59 +08:00
@apply text-base text-gray-600 leading-6 my-4 font-light;
2021-05-02 13:05:12 +08:00
2021-07-04 08:47:59 +08:00
:global(.dark) & {
@apply text-gray-400;
}
2021-05-02 10:42:38 +08:00
}
}