Joywork/css/article-editor.css
2026-05-22 21:21:54 +03:00

127 lines
2.6 KiB
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Стили для CKEditor при редактировании статей блога */
body, html {
font-family: Arial, "Helvetica Neue", sans-serif !important;
font-size: 16px !important;
line-height: 1.7 !important;
color: #000 !important;
padding: 20px 25px;
background: #fff !important;
}
body * {
color: #000;
}
p, li, td, th, div, span, label {
color: #000 !important;
}
h1, h2, h3, h4, h5, h6 {
color: #000 !important;
font-weight: 700;
line-height: 1.3;
}
h2 { font-size: 26px; margin: 32px 0 14px; }
h3 { font-size: 21px; margin: 26px 0 12px; }
h4 { font-size: 18px; margin: 22px 0 10px; }
p { margin: 0 0 14px 0; }
a { color: #29b13a; text-decoration: underline; }
ul, ol {
padding-left: 28px;
margin: 14px 0;
}
li { margin-bottom: 6px; }
strong, b { font-weight: 700; color: #000; }
/* Чек-лист с зелёными галочками — как на сайте */
ul.check-list {
list-style: none;
padding: 0;
margin: 24px 0;
}
ul.check-list li {
background: url('/promo/images/check_list.svg') no-repeat 0 2px;
background-size: 28px 28px;
min-height: 32px;
padding-left: 42px;
margin-bottom: 14px;
position: relative;
}
ul.check-list li::before {
display: none;
}
/* Цитата */
blockquote {
border-left: 4px solid #29b13a;
margin: 20px 0;
padding: 8px 18px;
background: #f7f7f7;
color: #333;
font-style: italic;
}
/* Код */
code {
background: #f5f5f5;
padding: 2px 6px;
border-radius: 3px;
font-family: Consolas, monospace;
font-size: 14px;
color: #c7254e;
}
pre {
background: #f5f5f5;
padding: 12px;
border-radius: 4px;
overflow-x: auto;
font-family: Consolas, monospace;
font-size: 13px;
}
/* Картинки в редакторе */
img {
max-width: 100%;
height: auto;
}
/* Таблицы */
table {
border-collapse: collapse;
margin: 16px 0;
width: 100%;
}
table td, table th {
border: 1px solid #ddd;
padding: 8px 12px;
}
table th {
background: #f5f5f5;
font-weight: 700;
}
/* Визуализация JSON-LD/script — жёлтая плашка чтобы админ видел блок,
на публичной странице такие теги невидимы (браузер их не рендерит) */
.cke_show_borders span[data-cke-real-element-type="script"],
.cke_show_borders .cke_protected {
display: inline-block;
background: #fff8dc;
border: 1px dashed #d4a017;
padding: 4px 10px;
color: #8b6914;
font-size: 12px;
border-radius: 3px;
}