UNPKG

open-web-inspector

Version:

The open source web element inspector - AI-controllable DOM inspection with live CSS editing, hover highlighting, and developer tools integration

59 lines (53 loc) 1.24 kB
/* Hero Component Styles - Simulating real production component CSS */ .hero { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #667eea, #764ba2); } .hero__title { font-family: 'Lalezar', cursive; font-size: 48px; color: #2d3748; margin: 0 0 16px 0; text-align: center; background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; font-weight: 400; } .hero__subtitle { font-family: 'Lato', sans-serif; font-size: 18px; color: #718096; text-align: center; margin: 0 0 32px 0; font-weight: 500; line-height: 1.5; } .hero__description { font-family: 'Inter', sans-serif; font-size: 16px; color: #4a5568; text-align: center; margin: 0 0 24px 0; line-height: 1.6; max-width: 600px; margin-left: auto; margin-right: auto; }