mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
55 lines
1.4 KiB
CSS
55 lines
1.4 KiB
CSS
/* Dealix presentation — print to PDF from browser (Ctrl+P → Save as PDF) */
|
|
@page { size: A4; margin: 14mm; }
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
font-family: "Segoe UI", "Tahoma", sans-serif;
|
|
direction: rtl;
|
|
text-align: right;
|
|
color: #0f172a;
|
|
background: #f8fafc;
|
|
line-height: 1.65;
|
|
max-width: 210mm;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
}
|
|
.cover {
|
|
background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f766e 100%);
|
|
color: #fff;
|
|
padding: 48px 36px;
|
|
border-radius: 16px;
|
|
margin-bottom: 28px;
|
|
}
|
|
.cover h1 { margin: 0 0 8px; font-size: 1.85rem; }
|
|
.cover .brand { color: #5eead4; font-weight: 800; letter-spacing: 0.02em; }
|
|
.cover .tagline { opacity: 0.92; font-size: 1.05rem; margin-top: 12px; }
|
|
.section {
|
|
background: #fff;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
padding: 20px 22px;
|
|
margin-bottom: 18px;
|
|
}
|
|
.section h2 {
|
|
margin: 0 0 12px;
|
|
font-size: 1.15rem;
|
|
color: #0d9488;
|
|
border-bottom: 2px solid #99f6e4;
|
|
padding-bottom: 8px;
|
|
}
|
|
ul { margin: 8px 0; padding-right: 22px; }
|
|
.badge {
|
|
display: inline-block;
|
|
background: #ecfdf5;
|
|
color: #047857;
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
font-size: 0.8rem;
|
|
font-weight: 700;
|
|
margin-left: 8px;
|
|
}
|
|
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
|
|
@media print {
|
|
body { background: #fff; padding: 0; }
|
|
.section { break-inside: avoid; }
|
|
}
|