File size: 2,521 Bytes
fe7e528 | 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #0a0a0f;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 100%;
max-width: 860px;
padding: 40px 24px;
}
header {
text-align: center;
margin-bottom: 48px;
}
header h1 {
font-size: 2.8rem;
font-weight: 700;
color: #00c896;
letter-spacing: 2px;
text-transform: uppercase;
}
header .subtitle {
font-size: 1rem;
color: #888;
margin-top: 8px;
letter-spacing: 1px;
}
.search-box {
display: flex;
flex-direction: column;
gap: 12px;
}
textarea {
width: 100%;
padding: 16px;
background: #12121a;
border: 1px solid #2a2a3a;
border-radius: 8px;
color: #e0e0e0;
font-size: 1rem;
resize: vertical;
outline: none;
transition: border-color 0.2s;
}
textarea:focus {
border-color: #00c896;
}
button {
align-self: flex-end;
padding: 12px 32px;
background: #00c896;
color: #0a0a0f;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
}
button:hover {
background: #00a87e;
}
button:disabled {
background: #2a2a3a;
color: #555;
cursor: not-allowed;
}
.status-bar {
display: flex;
align-items: center;
gap: 12px;
margin-top: 24px;
padding: 14px 18px;
background: #12121a;
border: 1px solid #2a2a3a;
border-radius: 8px;
font-size: 0.9rem;
color: #888;
}
.spinner {
width: 16px;
height: 16px;
border: 2px solid #2a2a3a;
border-top-color: #00c896;
border-radius: 50%;
animation: spin 0.8s linear infinite;
flex-shrink: 0;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.response-box {
margin-top: 32px;
padding: 28px;
background: #12121a;
border: 1px solid #2a2a3a;
border-radius: 8px;
}
.response-box h2 {
font-size: 1rem;
color: #00c896;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}
#responseText {
font-size: 0.97rem;
line-height: 1.8;
color: #d0d0d0;
white-space: pre-wrap;
}
.hidden {
display: none;
}
footer {
text-align: center;
margin-top: 48px;
font-size: 0.8rem;
color: #444;
}
.disclaimer {
margin-top: 6px;
color: #555;
font-size: 0.75rem;
} |