Spaces:
Running
Running
File size: 3,747 Bytes
8efd70f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | /* SENTINEL — Marp theme
* @theme sentinel
* @author Einstein + Sidra
* @size 16:9
*/
@import "default";
:root {
--bg: #0b1020;
--bg-2: #121a33;
--fg: #e6ecff;
--fg-dim: #9aa7cc;
--accent: #6366f1; /* indigo-500 */
--accent-2: #ef4444; /* red-500 */
--accent-3: #22c55e; /* green-500 */
--accent-4: #f59e0b; /* amber-500 */
--code-bg: #0f172a;
}
section {
background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
color: var(--fg);
font-family: -apple-system, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
padding: 60px 70px;
}
h1 {
font-size: 56px;
font-weight: 800;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
line-height: 1.1;
}
h2 {
font-size: 40px;
font-weight: 700;
color: var(--fg);
border-bottom: 2px solid var(--accent);
padding-bottom: 10px;
margin-bottom: 28px;
}
h3 {
font-size: 28px;
font-weight: 600;
color: var(--accent);
margin-top: 18px;
margin-bottom: 14px;
}
p, li {
font-size: 24px;
line-height: 1.45;
color: var(--fg);
}
li { margin-bottom: 8px; }
strong { color: var(--fg); font-weight: 700; }
em { color: var(--fg-dim); }
code {
background: var(--code-bg);
color: var(--accent-4);
padding: 2px 8px;
border-radius: 4px;
font-family: "JetBrains Mono", "SF Mono", Monaco, monospace;
font-size: 0.9em;
}
pre {
background: var(--code-bg);
border: 1px solid #1e293b;
border-radius: 8px;
padding: 18px 22px;
font-size: 19px;
}
pre code { background: transparent; padding: 0; color: var(--fg); }
blockquote {
border-left: 4px solid var(--accent);
color: var(--fg-dim);
padding-left: 20px;
margin: 16px 0;
font-style: italic;
}
table {
font-size: 22px;
width: 100%;
border-collapse: collapse;
}
th {
background: var(--accent);
color: white;
font-weight: 700;
padding: 10px 14px;
text-align: left;
}
td { padding: 10px 14px; border-bottom: 1px solid #1e293b; }
tr:nth-child(even) td { background: rgba(99, 102, 241, 0.05); }
/* title slide */
section.title {
justify-content: center;
text-align: center;
}
section.title h1 {
font-size: 80px;
margin-bottom: 12px;
}
section.title h2 {
border: none;
font-size: 32px;
color: var(--fg-dim);
font-weight: 500;
}
section.title .subtitle {
font-size: 24px;
color: var(--fg-dim);
margin-top: 32px;
}
/* accent slide (for punchline stats) */
section.stat {
justify-content: center;
text-align: center;
}
section.stat .huge {
font-size: 140px;
font-weight: 900;
line-height: 1;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
}
section.stat .caption {
font-size: 30px;
color: var(--fg-dim);
}
/* two-column */
section.split .cols {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
/* footer */
section::after {
color: var(--fg-dim);
font-size: 14px;
}
/* color helpers */
.good { color: var(--accent-3); font-weight: 700; }
.bad { color: var(--accent-2); font-weight: 700; }
.warn { color: var(--accent-4); font-weight: 700; }
.dim { color: var(--fg-dim); }
/* callout box */
.callout {
background: rgba(99, 102, 241, 0.1);
border-left: 4px solid var(--accent);
padding: 16px 22px;
border-radius: 6px;
margin: 16px 0;
font-size: 22px;
}
|