Spaces:
Running
Running
File size: 1,766 Bytes
5929a77 282fee0 c2cd99f 282fee0 c2cd99f 282fee0 c2cd99f 282fee0 c2cd99f 282fee0 c2cd99f 282fee0 c2cd99f 282fee0 5929a77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
/* 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 !important;
visibility: visible !important;
}
#urlInput {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
}
/* Button visibility */
button[type="submit"],
button[type="button"] {
display: flex !important;
visibility: visible !important;
opacity: 1 !important;
}
|