From 26b7af8208998c6977b1c04207cca6c0a9286f4d Mon Sep 17 00:00:00 2001 From: devdatt Date: Sat, 21 Feb 2026 05:36:01 +0530 Subject: [PATCH] css update --- encoder/header.php | 51 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 12 deletions(-) diff --git a/encoder/header.php b/encoder/header.php index 7864766..8a155e1 100755 --- a/encoder/header.php +++ b/encoder/header.php @@ -500,16 +500,51 @@ include 'static.php'; /* form rows */ .row { - margin-bottom: 18px; + margin-bottom: 22px; + display: flex; + flex-direction: column; } + /* label */ .row label { - display: block; font-size: 14px; font-weight: 600; - margin-bottom: 6px; - color: var(--muted); + margin-bottom: 8px; + color: #cbd5e1; + letter-spacing: .2px; + } + + .row textarea { + width: 100%; + min-height: 70px; + padding: 14px 14px; + border-radius: 12px; + border: 1px solid rgba(255, 255, 255, .12); + background: linear-gradient(180deg, #020617, #020617); + color: #f1f5f9; + font-size: 14px; + line-height: 1.5; + resize: vertical; + transition: .18s ease; + } + + .row textarea::placeholder { + color: #64748b; + } + + .row textarea:focus { + border-color: #38bdf8; + box-shadow: + 0 0 0 2px rgba(56, 189, 248, .18), + 0 6px 18px rgba(0, 0, 0, .45); + outline: none; + } + + .row small { + margin-top: 7px; + font-size: 12px; + color: #64748b; } /* textarea fields */ @@ -531,14 +566,6 @@ include 'static.php'; box-shadow: 0 0 0 2px rgba(56, 189, 248, .15); } - /* helper hint */ - .row small { - display: block; - margin-top: 6px; - font-size: 12px; - color: #64748b; - } - /* invalid highlight */ textarea:invalid { border-color: #ef4444;