Spaces:
Running
Running
| /* Shared styles across all pages */ | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #c1c1c1; | |
| border-radius: 3px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #a8a8a8; | |
| } | |
| /* Smooth transitions */ | |
| * { | |
| transition: all 0.2s ease-in-out; | |
| } | |
| /* Custom animations */ | |
| @keyframes fadeIn { | |
| from { | |
| opacity: 0; | |
| transform: translateY(10px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| .fade-in { | |
| animation: fadeIn 0.5s ease-out; | |
| } | |
| /* Prose styles for extracted content */ | |
| .prose { | |
| line-height: 1.6; | |
| } | |
| .prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 { | |
| margin-top: 1.5em; | |
| margin-bottom: 0.5em; | |
| font-weight: 600; | |
| } | |
| .prose p { | |
| margin-bottom: 1em; | |
| } | |
| .prose ul, .prose ol { | |
| margin-bottom: 1em; | |
| padding-left: 1.5em; | |
| } | |
| .prose li { | |
| margin-bottom: 0.5em; | |
| } | |
| /* Image gallery styles */ | |
| .gallery-image { | |
| border-radius: 8px; | |
| overflow: hidden; | |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); | |
| transition: transform 0.3s ease; | |
| } | |
| .gallery-image:hover { | |
| transform: scale(1.05); | |
| } | |
| /* Ensure form elements are visible */ | |
| #scraperForm { | |
| display: block ; | |
| visibility: visible ; | |
| } | |
| #urlInput { | |
| display: block ; | |
| visibility: visible ; | |
| opacity: 1 ; | |
| } | |
| /* Button visibility */ | |
| button[type="submit"], | |
| button[type="button"] { | |
| display: flex ; | |
| visibility: visible ; | |
| opacity: 1 ; | |
| } | |