HTML
CSS
JS
copy
HTML
copy
CONSOLE
PREVIEW
AeroCode
Isaac Clayton
ยท
GitHub
Download Offline Editor
CSS
copy
CONSOLE
PREVIEW
.card { max-width: 500px; border-radius: 20px; overflow: hidden; background: #fffb; backdrop-filter: blur(20px); box-shadow: 0 20px 40px #0002, inset 0 1px 0 #fff; } .card img { width: 100%; display: block; } .content { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; gap: 16px; } h1 { margin: 0; font: 700 26px system-ui; color: #172038; } p { margin: 2px 0 0; font: 14px system-ui; color: #577277; } a { color: inherit; text-decoration: none; } a:hover { text-decoration: underline; } button { padding: 12px 24px; font: 600 15px system-ui; color: #fff; border: none; border-radius: 100px; background: linear-gradient(to bottom, #29adff, #4f8fba); border-bottom: 3px solid #3c5e8b; box-shadow: 0 4px 12px #29adff55, inset 0 1px 0 #fff6; cursor: pointer; transition: 0.15s; } button:hover { border-bottom-width: 5px; margin-top: -2px; } button:active { border-bottom-width: 1px; margin-top: 2px; } /* Page layout */ * { box-sizing: border-box; } body { min-height: 100vh; margin: 0; padding: 16px; display: grid; place-items: center; background: linear-gradient(135deg, #a8edea, #fed6e3); } /* Animated grid background */ body::before { content: ""; position: fixed; inset: 0; background: repeating-linear-gradient( 0deg, #0001 0 1px, transparent 1px 24px ), repeating-linear-gradient( 90deg, #0001 0 1px, transparent 1px 24px ); animation: scroll 4s linear infinite; pointer-events: none; } @keyframes scroll { to { background-position: 24px 24px; } }
JS
copy
CONSOLE
PREVIEW
console.log("Welcome to AeroCode!"); document.querySelector('button').onclick = () => { const a = document.createElement('a'); a.href = 'https://slightknack.dev/aerocode.html'; a.download = 'aerocode.html'; a.click(); };
VIM
NORMAL
PLAIN
OFFLINE
mobile
NEW
SHARE
PREVIEW
CODE
CONSOLE
CONSOLE
ALL
LOG
WARN
ERR
copy
clear
PREVIEW
CODE
CONSOLE
LOG
WARN
ERR