Spaces:
Running
Running
File size: 3,098 Bytes
6500e56 814658f 6500e56 814658f 6500e56 814658f 6500e56 814658f 6500e56 814658f 6500e56 814658f 6500e56 | 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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | /* Custom Styles for NatureVerse Explorer */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
min-height: 100vh;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #10b981 0%, #059669 100%);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #059669 0%, #047857 100%);
}
/* Glassmorphism Effect */
.glass {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Floating Animation */
@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}
.float-animation {
animation: float 3s ease-in-out infinite;
}
/* Gradient Text */
.gradient-text {
background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Custom Button Styles */
.btn-primary {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
transition: all 0.3s ease;
}
.btn-primary:hover {
background: linear-gradient(135deg, #059669 0%, #047857 100%);
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}
/* Card Hover Effects */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
/* Loading Animation */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.pulse-animation {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Tab Transitions */
.tab-content {
transition: all 0.3s ease-in-out;
}
.tab-button.active {
background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}
/* Custom Input Styles */
.input-nature {
border: 2px solid #d1fae5;
transition: all 0.3s ease;
}
.input-nature:focus {
border-color: #10b981;
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
outline: none;
}
/* Nature-inspired color palette */
:root {
--nature-emerald: #10b981;
--nature-teal: #0d9488;
--nature-forest: #065f46;
--nature-sky: #0ea5e9;
--nature-sun: #f59e0b;
}
/* Responsive Design Helpers */
@media (max-width: 768px) {
.mobile-stack {
flex-direction: column;
}
.mobile-center {
text-align: center;
}
}
/* Custom Shadows */
.nature-shadow {
box-shadow: 0 10px 25px -3px rgba(16, 185, 129, 0.1), 0 4px 6px -2px rgba(16, 185, 129, 0.05);
}
/* Interactive Element States */
.interactive-element {
cursor: pointer;
transition: all 0.2s ease;
}
.interactive-element:active {
transform: scale(0.98);
} |