[b]Test kodu.[/b] artık kod alanı var. [code=css]/* Genel body için dark tema */ body { background: #1e1e1e; color: #f0f0f0; font-family: 'Courier New', monospace; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } /* Kod bloğu container */ .code-block { background: #2d2d2d; border-radius: 8px; padding: 20px; width: 80%; max-width: 800px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); overflow-x: auto; } /* Başlık (HTML Kodu veya CSS Kodu gibi) */ .code-title { font-weight: bold; color: #ffcc00; margin-bottom: 10px; font-size: 18px; } /* Pre ve code etiketleri için stil */ pre { margin: 0; white-space: pre; overflow: visible; } code { font-family: 'Consolas', 'Courier New', monospace; font-size: 14px; line-height: 1.5; } /* Basit syntax highlighting (saf CSS ile sınırlı) */ .keyword { color: #ff79c6; } /* div, span, body gibi */ .selector { color: #50fa7b; } /* class, id seçiciler */ .property { color: #8be9fd; } /* position, width gibi */ .value { color: #f1fa8c; } /* #fff, 100% gibi */ .comment { color: #6272a4; } /* yorumlar */[/code]