NEKST/onchain-oracle-wizard
0
1body {2 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;3}4 5.card {6 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);7}8 9.status-indicator {10 width: 12px;11 height: 12px;12 border-radius: 50%;13 display: inline-block;14}15 16.triangle-up {17 width: 0;18 height: 0;19 border-left: 6px solid transparent;20 border-right: 6px solid transparent;21 border-bottom: 10px solid white;22}23 24.triangle-down {25 width: 0;26 height: 0;27 border-left: 6px solid transparent;28 border-right: 6px solid transparent;29 border-top: 10px solid white;30}31 32.square {33 width: 10px;34 height: 10px;35 background-color: white;36 display: inline-block;37}38 39#analysis-output {40 font-family: 'Courier New', Courier, monospace;41 overflow-y: auto;42 max-height: 300px;43}44 45input, textarea {46 color: white;47}48 49input::placeholder, textarea::placeholder {50 color: #9CA3AF;51}52 53input:focus, textarea:focus {54 outline: none;55 border-color: #3B82F6;56}