HTMLify
style.css
Views: 66 | 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 24 25 | :root { --bg: #0f172a; --card: #1e293b; --accent: #38bdf8; --text: #f1f5f9; } body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh; } nav { width: 100%; padding: 2rem; display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; } nav ul { display: flex; list-style: none; gap: 2rem; } nav a { color: var(--text); text-decoration: none; font-weight: 500; } .card { background: var(--card); padding: 3rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3); width: 100%; max-width: 400px; } .input-group { margin-bottom: 1.5rem; } input { width: 100%; padding: 0.8rem; border-radius: 0.5rem; border: 1px solid #334155; background: #0f172a; color: white; margin-bottom: 1rem; box-sizing: border-box; } button { width: 100%; padding: 1rem; background: var(--accent); border: none; border-radius: 0.5rem; color: #000; font-weight: bold; cursor: pointer; transition: opacity 0.2s; } button:hover { opacity: 0.9; } .admin-card { max-width: 800px; } table { width: 100%; border-collapse: collapse; margin-top: 2rem; } th, td { padding: 1rem; border-bottom: 1px solid #334155; text-align: left; } #statusMessage { margin-top: 1rem; font-size: 0.85rem; color: #94a3b8; } /* 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); } |