HTML
CSS
JS
copy
RUN
HTML
copy
CONSOLE
PREVIEW
AeroCode
Isaac Clayton
View on GitHub
CSS
copy
CONSOLE
PREVIEW
* { box-sizing: border-box; margin: 0 } body { min-height: 100vh; display: grid; place-items: center; background: #4d65b4; color: #8fd3ff; font: 14px system-ui; padding: 16px; } body::before { content: ""; position: fixed; inset: -24px; background: repeating-linear-gradient(0deg, #4d9be6 0 1px, transparent 1px 24px), repeating-linear-gradient(90deg, #4d9be6 0 1px, transparent 1px 24px); animation: pan 4s linear infinite; pointer-events: none; z-index: -1; } @keyframes pan { to { background-position: 24px 24px } } .card { max-width: 500px; border: 2px solid; border-radius: 12px; overflow: hidden; background: #4d65b4; } .card img { width: 100%; display: block; filter: grayscale(1) brightness(0.6); mix-blend-mode: color-dodge; } .content { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; gap: 16px; border-top: 2px solid; } h1 { font-size: 26px; font-weight: 700 } a { color: inherit; text-decoration: none } a:hover { color: #fff } button { padding: 12px 24px; font: 600 15px system-ui; color: inherit; background: transparent; border: 2px solid; border-radius: 100px; cursor: pointer; transition: 0.15s; } button:hover { background: #8fd3ff; color: #484a77; border-color: #8fd3ff; }
JS
copy
RUN
CONSOLE
PREVIEW
console.log("Welcome to AeroCode!"); document.querySelector('button').onclick = () => { window.open('https://git.isaac.sh/aerocode', '_blank'); };
VIM
NORMAL
PLAIN
OFFLINE
mobile
NEW
SHARE
PREVIEW
CODE
CONSOLE
CONSOLE
ALL
LOG
WARN
ERR
copy
clear
PREVIEW
CODE
CONSOLE
LOG
WARN
ERR
RUN