styles.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. #userList {
  48. }
  49. .list-user-name {
  50. &:not(:last-child){
  51. border-bottom: 1px solid #ccc;
  52. font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  53. }
  54. }
  55. .active {
  56. background-color: #0a0a0a08 !important;
  57. box-shadow: 0px 0px 0px 2px #0a0a0a08;
  58. border-radius: 0.375rem;
  59. }
  60. @keyframes spin {
  61. 0% {
  62. transform: rotate(0deg);
  63. }
  64. 100% {
  65. transform: rotate(360deg);
  66. }
  67. }
  68. #aiLoadingIndicator::after {
  69. animation: thinking 1s infinite;
  70. content: "";
  71. display: block;
  72. font-size: 1.5rem;
  73. }
  74. @keyframes thinking {
  75. 0% {
  76. content: "";
  77. }
  78. 25% {
  79. content: ".";
  80. }
  81. 50% {
  82. content: "..";
  83. }
  84. 75% {
  85. content: "...";
  86. }
  87. 100% {
  88. content: "....";
  89. }
  90. }