| 
									
										
										
										
											2025-08-22 21:55:03 -03:00
										 |  |  | /* src/index.css */ | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Se importa la tipografía "Public Sans" desde Google Fonts, la misma que usa eldia.com */ | 
					
						
							|  |  |  | @import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;700&display=swap'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  | :root { | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   /* Se establece la nueva fuente principal y las de respaldo */ | 
					
						
							|  |  |  |   font-family: "Public Sans", system-ui, Avenir, Helvetica, Arial, sans-serif; | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  |   line-height: 1.5; | 
					
						
							|  |  |  |   font-weight: 400; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   /* Tema Claro inspirado en El Día */ | 
					
						
							| 
									
										
										
										
											2025-08-22 21:55:03 -03:00
										 |  |  |   color-scheme: light; | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   color: #333333; /* Texto principal más oscuro para mejor legibilidad */ | 
					
						
							|  |  |  |   background-color: #ffffff; /* Fondo blanco */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |   font-synthesis: none; | 
					
						
							|  |  |  |   text-rendering: optimizeLegibility; | 
					
						
							|  |  |  |   -webkit-font-smoothing: antialiased; | 
					
						
							|  |  |  |   -moz-osx-font-smoothing: grayscale; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | a { | 
					
						
							|  |  |  |   font-weight: 500; | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   color: #0073e6; /* Azul corporativo de El Día */ | 
					
						
							|  |  |  |   text-decoration: none; /* Se quita el subrayado por defecto, como en el sitio */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | a:hover { | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   text-decoration: underline; /* Se añade subrayado en hover para claridad */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | body { | 
					
						
							|  |  |  |   margin: 0; | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   /* Se elimina el centrado vertical para un layout de página más tradicional */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  |   min-width: 320px; | 
					
						
							|  |  |  |   min-height: 100vh; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | h1 { | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   font-size: 2.5em; /* Ligeramente más pequeño para un look más de noticia */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  |   line-height: 1.1; | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   color: #212529; | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | button { | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   border-radius: 4px; /* Bordes menos redondeados */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  |   border: 1px solid transparent; | 
					
						
							|  |  |  |   padding: 0.6em 1.2em; | 
					
						
							|  |  |  |   font-size: 1em; | 
					
						
							|  |  |  |   font-weight: 500; | 
					
						
							|  |  |  |   font-family: inherit; | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   background-color: #f8f9fa; /* Un gris muy claro para botones */ | 
					
						
							|  |  |  |   border-color: #dee2e6; /* Borde sutil */ | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  |   cursor: pointer; | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   transition: all 0.2s; | 
					
						
							| 
									
										
										
										
											2025-08-14 15:27:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | button:hover { | 
					
						
							| 
									
										
										
										
											2025-08-25 10:25:54 -03:00
										 |  |  |   border-color: #0073e6; | 
					
						
							|  |  |  |   background-color: #eef7ff; | 
					
						
							| 
									
										
										
										
											2025-08-22 21:55:03 -03:00
										 |  |  | } |