Spaces:
Running
Running
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #f7fafc; | |
| color: #1a202c; | |
| margin: 0; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| .hero { | |
| background-size: cover; | |
| background-position: center; | |
| } | |
| .feature-card { | |
| transition: transform 0.2s ease, box-shadow 0.2s ease; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0,0,0,0.1); | |
| } | |
| pre { | |
| white-space: pre-wrap; | |
| word-wrap: break-word; | |
| } | |
| /* Dashboard specific styles */ | |
| #processList tr:hover { | |
| background-color: #f8fafc; | |
| } | |
| canvas { | |
| width: 100% ; | |
| height: 100% ; | |
| } | |