📁 КОНФИГУРАЦИЯ "[Название]"
│ Версия: 1.0.0
│ Дата создания: [дата]
│
├── 🔧 ОБЩИЕ МОДУЛИ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Оперативное сообщение о происшествии</title> | |
| <style> | |
| /* === Общие стили === */ | |
| body { | |
| font-family: "Open Sans", Arial, sans-serif; | |
| font-size: 10pt; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Печатная форма — Оперативное сообщение о происшествии</title> | |
| <style> | |
| body { font-family: "Open Sans", Arial, sans-serif; font-size: 10pt; background-color: #EEF1F4; margin: 20px; } | |
| @media print { | |
| body { -webkit-print-color-adjust: exact; } | |
| .no-print { display: none; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Оперативное сообщение о происшествии</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| body { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |