Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

71 lines
1.3KB

  1. /** ------------------------------------------------------------
  2. ## TAILWIND CSS
  3. --------------------------------------------------------- */
  4. @import '_tailwind';
  5. /** ------------------------------------------------------------
  6. ## CUSTOM CLASSES
  7. --------------------------------------------------------- */
  8. html {
  9. height: 100%;
  10. }
  11. body {
  12. background: linear-gradient(270deg, #00b7af, #3c67bd, #5d88df);
  13. background-size: 600% 600%;
  14. -webkit-animation: Gradient 15s ease infinite;
  15. -moz-animation: Gradient 15s ease infinite;
  16. animation: Gradient 15s ease infinite;
  17. min-height: 100%;
  18. height: 100%;
  19. }
  20. @-webkit-keyframes Gradient {
  21. 0% {
  22. background-position: 0% 50%
  23. }
  24. 50% {
  25. background-position: 100% 50%
  26. }
  27. 100% {
  28. background-position: 0% 50%
  29. }
  30. }
  31. @-moz-keyframes Gradient {
  32. 0% {
  33. background-position: 0% 50%
  34. }
  35. 50% {
  36. background-position: 100% 50%
  37. }
  38. 100% {
  39. background-position: 0% 50%
  40. }
  41. }
  42. @keyframes Gradient {
  43. 0% {
  44. background-position: 0% 50%
  45. }
  46. 50% {
  47. background-position: 100% 50%
  48. }
  49. 100% {
  50. background-position: 0% 50%
  51. }
  52. }
  53. .btn {
  54. @apply text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border border-indigo text-indigo;
  55. }
  56. .btn-indigo {
  57. @apply bg-white text-indigo;
  58. }
  59. .btn-indigo:hover {
  60. @apply bg-indigo text-white;
  61. }