| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /* Paleta de Colores Suavizada y Moderna */
- :root {
- --background-dark: #121212;
- --background-card: #1e1e1e;
- --background-header: #0a0a0a;
- --border-color: #2e2e2e;
- --text-primary: #373737;
- --text-secondary: #0e0e0e;
- --accent-red: #5490eb;
- /* Rojo (Tailwind red-600) */
- --accent-red-hover: #b91c1c;
- /* Rojo más oscuro (Tailwind red-700) */
- }
- * {
- box-sizing: border-box;
- }
- body {
- font-family: 'Inter', sans-serif;
- background-color: var(--background-dark);
- color: var(--text-primary);
- font-size: 16px;
- line-height: 1.625;
- }
- header.bg-black {
- background-color: var(--background-header);
- }
- footer.bg-black {
- background-color: var(--background-header);
- }
- .product-card {
- background-color: var(--background-card);
- border: 1px solid var(--border-color);
- }
- #cartIcon {
- position: relative;
- }
- #cartCount {
- position: absolute;
- top: -20%;
- left: -20%;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- background: red;
- color: white;
- }
- #chatIcon {
- position: relative;
- & span {
- content: "";
- position: absolute;
- top: -5px;
- right: -5px;
- width: 10px;
- height: 10px;
- background: red;
- border-radius: 50%;
- }
- }
- .list-user-name {
- &:not(:last-child){
- border-bottom: 1px solid #ccc;
- font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
- }
- }
- .active {
- background-color: #0a0a0a08 !important;
- box-shadow: 0px 0px 0px 2px #0a0a0a08;
- border-radius: 0.375rem;
- }
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- #aiLoadingIndicator::after {
- animation: thinking 1s infinite;
- content: "";
- display: block;
- font-size: 1.5rem;
- }
- @keyframes thinking {
- 0% {
- content: "";
- }
- 25% {
- content: ".";
- }
- 50% {
- content: "..";
- }
- 75% {
- content: "...";
- }
- 100% {
- content: "....";
- }
- }
|