Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

cards.css 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer components {
  5. .card {
  6. @apply px-12 py-12 bg-white dark:bg-dg-primary-1700 text-dark-gray dark:text-white shadow-md dark:border-dg-primary-1500 dark:border-solid dark:border text-center rounded-xl cursor-pointer z-10 transition-all hover:scale-105 hover:transition-all;
  7. }
  8. .card_post {
  9. @apply px-8 py-8 bg-white dark:bg-dg-primary-1700 text-dark-gray dark:text-white shadow-md dark:border-dg-primary-1500 dark:border-solid dark:border text-left rounded-xl cursor-pointer transition-all hover:scale-105 hover:transition-all;
  10. }
  11. .card-no-hover {
  12. @apply px-12 py-12 bg-white dark:bg-dg-primary-1700 text-dark-gray dark:text-white shadow-md dark:border-dg-primary-1500 dark:border-solid dark:border text-center rounded-xl z-10 transition-all;
  13. }
  14. .action-card-component {
  15. @apply
  16. }
  17. .card-plain {
  18. @apply p-12
  19. }
  20. }
  21. .leaf {
  22. border-bottom-right-radius: 32px;
  23. }
  24. .action-card {
  25. background: #FFFFFF;
  26. border: 1px solid #D4D4D4;
  27. border-radius: 18px;
  28. }
  29. .active-image {
  30. opacity: 1 !important;
  31. }