cooked/styles.css

21 lines
694 B
CSS
Raw Normal View History

2024-10-22 11:18:39 +02:00
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
/* overflow-hidden is to prevent overflow within the card */
.card {
@apply bg-white rounded overflow-hidden shadow-md relative;
}
/* object-cover is to prevent distortion */
.badge {
@apply bg-secondary-100 text-secondary-200 text-xs uppercase font-bold rounded-full p-2 absolute top-0 ml-2 mt-2;
}
/* tracking-wider is for space between letters */
.btn {
@apply rounded-full py-2 px-3 uppercase text-xs font-bold cursor-pointer tracking-wider;
}