Изменения документа 📡 Основные понятия

Редактировал(а) Дмитрий Копотев 2025/07/29 00:33

От версии 7.35
отредактировано Дмитрий Копотев
на 2025/07/28 23:22
Изменить комментарий: К данной версии нет комментариев
К версии 7.31
отредактировано Дмитрий Копотев
на 2025/07/27 16:03
Изменить комментарий: К данной версии нет комментариев

Сводка

Подробности

Свойства страницы
Содержимое
... ... @@ -3,6 +3,47 @@
3 3  html {
4 4   scroll-behavior: smooth;
5 5  }
6 +
7 +/* ==== Секция терминов ==== */
8 +.terms-section {
9 + background: #fafafa;
10 + padding: 18px;
11 + border-radius: 10px;
12 + margin: 24px 0;
13 + box-shadow: 0 2px 6px rgba(0,0,0,0.05);
14 +}
15 +
16 +.terms-section h2 {
17 + margin-top: 0;
18 +}
19 +
20 +.term-grid {
21 + display: grid;
22 + grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
23 + gap: 14px;
24 + margin-top: 14px;
25 +}
26 +
27 +.term-card {
28 + border-radius: 8px;
29 + overflow: hidden;
30 + background: white;
31 + display: flex;
32 + flex-direction: column;
33 + transition: transform 0.2s ease, box-shadow 0.2s ease;
34 +}
35 +
36 +.term-card:hover {
37 + transform: translateY(-3px);
38 + box-shadow: 0 4px 10px rgba(0,0,0,0.08);
39 +}
40 +
41 +/* Цвета шапок */
42 +.term-card.primary .term-card-header { background: var(--color-primary); }
43 +.term-card.success .term-card-header { background: var(--color-success); }
44 +.term-card.info .term-card-header { background: var(--color-info); }
45 +.term-card.warning .term-card-header { background: var(--color-warning); }
46 +.term-card.danger .term-card-header { background: var(--color-danger); }
6 6  </style>
7 7  
8 8  <div class="page-container">