18 lines
963 B
HTML
18 lines
963 B
HTML
<!-- Terminal Logs -->
|
|
<div class="flex-grow flex flex-col bg-black border border-[#00ff41]/20 overflow-hidden font-mono min-h-[180px]">
|
|
<div class="bg-[#111] px-4 py-2 border-b border-[#00ff41]/10 flex justify-between items-center shrink-0">
|
|
<span class="text-[11px] uppercase font-bold tracking-[0.3em] flex items-center gap-2 text-[#00ff41]">
|
|
<div class="w-1.5 h-1.5 bg-[#00ff41] rounded-full animate-ping"></div> Logs
|
|
</span>
|
|
<button id="clearLogs"
|
|
class="text-[10px] opacity-30 hover:opacity-100 hover:text-[#00ff41] transition-opacity uppercase">Clear</button>
|
|
</div>
|
|
|
|
<div id="logsContainer"
|
|
class="flex-grow p-3 overflow-y-auto custom-scrollbar text-[11px] space-y-1 opacity-80 font-mono">
|
|
<div class="flex gap-2">
|
|
<span class="opacity-20 text-[#00ff41]">[SYSTEM]</span>
|
|
<span class="text-[#00ff41] animate-pulse">_</span>
|
|
</div>
|
|
</div>
|
|
</div> |