The Node.js® Website
at main 626 B view raw
1.container { 2 @apply max-w-full 3 flex-1; 4} 5 6.subtitle { 7 @apply mb-2 8 mt-6 9 inline-block 10 text-xs 11 font-semibold 12 text-green-600 13 dark:text-green-400; 14} 15 16.title { 17 @apply mb-2 18 block 19 text-xl 20 font-semibold 21 text-neutral-900 22 dark:text-white; 23} 24 25.description { 26 @apply mb-6 27 line-clamp-3 28 text-sm 29 text-neutral-800 30 dark:text-neutral-200; 31} 32 33.footer { 34 @apply flex 35 gap-x-3; 36} 37 38.author { 39 p { 40 @apply text-sm 41 font-semibold 42 text-neutral-900 43 dark:text-white; 44 } 45 46 time { 47 @apply text-sm 48 text-neutral-800 49 dark:text-neutral-200; 50 } 51}