HTMLify
style.css
Views: 14 | Author: karbonsites
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /* Karbon Sites Branding */ #karbon-promo-banner { position: fixed; bottom: 10px; right: 10px; background-color: rgba(0, 0, 0, 0.8); color: white; padding: 8px 16px; border-radius: 8px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: 14px; z-index: 10000; display: flex; align-items: center; gap: 10px; text-decoration: none; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.2s ease-in-out; } #karbon-promo-banner:hover { transform: scale(1.05); } |