Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

74 lines
1.4KB

  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. }
  19. @-webkit-keyframes Gradient {
  20. 0% {
  21. background-position: 0% 50%
  22. }
  23. 50% {
  24. background-position: 100% 50%
  25. }
  26. 100% {
  27. background-position: 0% 50%
  28. }
  29. }
  30. @-moz-keyframes Gradient {
  31. 0% {
  32. background-position: 0% 50%
  33. }
  34. 50% {
  35. background-position: 100% 50%
  36. }
  37. 100% {
  38. background-position: 0% 50%
  39. }
  40. }
  41. @keyframes Gradient {
  42. 0% {
  43. background-position: 0% 50%
  44. }
  45. 50% {
  46. background-position: 100% 50%
  47. }
  48. 100% {
  49. background-position: 0% 50%
  50. }
  51. }
  52. .btn {
  53. @apply text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border border-indigo text-indigo;
  54. }
  55. .btn-indigo {
  56. @apply bg-white text-indigo;
  57. }
  58. .btn-indigo:hover {
  59. @apply bg-indigo text-white;
  60. }
  61. /* Temporary fix for https://github.com/vaso2/nuxt-fontawesome/issues/9 */
  62. .fix-fa-inlined span{
  63. width: 1em !important;
  64. }