styles.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* Paleta de Colores Suavizada y Moderna */
  2. :root {
  3. --background-dark: #121212;
  4. --background-card: #1e1e1e;
  5. --background-header: #0a0a0a;
  6. --border-color: #2e2e2e;
  7. --text-primary: #373737;
  8. --text-secondary: #0e0e0e;
  9. --accent-red: #5490eb;
  10. /* Rojo (Tailwind red-600) */
  11. --accent-red-hover: #b91c1c;
  12. /* Rojo más oscuro (Tailwind red-700) */
  13. }
  14. * {
  15. box-sizing: border-box;
  16. }
  17. body {
  18. font-family: 'Inter', sans-serif;
  19. background-color: var(--background-dark);
  20. color: var(--text-primary);
  21. font-size: 16px;
  22. line-height: 1.625;
  23. }
  24. header.bg-black {
  25. background-color: var(--background-header);
  26. }
  27. footer.bg-black {
  28. background-color: var(--background-header);
  29. }
  30. .product-card {
  31. background-color: var(--background-card);
  32. border: 1px solid var(--border-color);
  33. }
  34. #cartIcon {
  35. position: relative;
  36. }
  37. #cartCount {
  38. position: absolute;
  39. top: -20%;
  40. left: -20%;
  41. width: 20px;
  42. height: 20px;
  43. border-radius: 50%;
  44. background: red;
  45. color: white;
  46. }
  47. #chatIcon {
  48. position: relative;
  49. & span {
  50. content: "";
  51. position: absolute;
  52. top: -5px;
  53. right: -5px;
  54. width: 10px;
  55. height: 10px;
  56. background: red;
  57. border-radius: 50%;
  58. }
  59. }
  60. .list-user-name {
  61. &:not(:last-child){
  62. border-bottom: 1px solid #ccc;
  63. font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  64. }
  65. }
  66. .active {
  67. background-color: #0a0a0a08 !important;
  68. box-shadow: 0px 0px 0px 2px #0a0a0a08;
  69. border-radius: 0.375rem;
  70. }
  71. @keyframes spin {
  72. 0% {
  73. transform: rotate(0deg);
  74. }
  75. 100% {
  76. transform: rotate(360deg);
  77. }
  78. }
  79. #aiLoadingIndicator::after {
  80. animation: thinking 1s infinite;
  81. content: "";
  82. display: block;
  83. font-size: 1.5rem;
  84. }
  85. @keyframes thinking {
  86. 0% {
  87. content: "";
  88. }
  89. 25% {
  90. content: ".";
  91. }
  92. 50% {
  93. content: "..";
  94. }
  95. 75% {
  96. content: "...";
  97. }
  98. 100% {
  99. content: "....";
  100. }
  101. }