From 41a2c41e448b7933e0f44540cb9c366430559153 Mon Sep 17 00:00:00 2001 From: devdatt Date: Wed, 18 Feb 2026 05:57:47 +0530 Subject: [PATCH] update --- encoder/header.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/encoder/header.php b/encoder/header.php index b063b96..7dcc207 100755 --- a/encoder/header.php +++ b/encoder/header.php @@ -745,6 +745,40 @@ include 'static.php'; grid-template-columns: 1fr; } } + + /* ===== NOTE BLOCK FIX ===== */ + + .card .note { + margin-top: 22px; + padding: 18px; + border-radius: 14px; + background: linear-gradient(180deg, #020617, #020617); + border: 1px solid var(--border); + color: #cbd5e1; + font-size: 14px; + line-height: 1.65; + } + + /* title */ + .card .note strong { + display: block; + margin-bottom: 10px; + font-size: 15px; + color: #e2e8f0; + } + + /* code block inside note */ + .card .note pre { + margin-top: 12px; + padding: 14px; + border-radius: 12px; + background: #010409; + border: 1px dashed rgba(255, 255, 255, .08); + color: #94a3b8; + font-size: 13px; + line-height: 1.6; + overflow: auto; + }