Knowledge Lifecycle
Browse files
style.css
CHANGED
|
@@ -41,12 +41,17 @@ body {
|
|
| 41 |
font: 16px/1.55 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 42 |
color: var(--ink);
|
| 43 |
background:
|
|
|
|
| 44 |
linear-gradient(180deg,
|
| 45 |
-
rgba(74,127,212,.
|
| 46 |
-
rgba(224,138,46,.
|
| 47 |
-
rgba(143,95,184,.
|
| 48 |
-
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
var(--bg);
|
| 51 |
}
|
| 52 |
|
|
@@ -400,3 +405,11 @@ footer { margin-top: 4rem; padding-top: 2rem; }
|
|
| 400 |
.preset.active { background: #fff; }
|
| 401 |
textarea, input[type=text], select { background: rgba(255,255,255,.94); }
|
| 402 |
textarea:focus, input:focus, select:focus { background: #fff; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
font: 16px/1.55 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 42 |
color: var(--ink);
|
| 43 |
background:
|
| 44 |
+
/* Stage-colour wash across the whole page, not only the header. */
|
| 45 |
linear-gradient(180deg,
|
| 46 |
+
rgba(74,127,212,.075) 0%, rgba(42,157,143,.055) 20%,
|
| 47 |
+
rgba(224,138,46,.045) 40%, rgba(208,83,83,.04) 62%,
|
| 48 |
+
rgba(143,95,184,.045) 82%, rgba(74,127,212,.04) 100%),
|
| 49 |
+
/* Measurement grid: a major line every fifth cell, so the ground has
|
| 50 |
+
structure at reading distance instead of an even hairline hum. */
|
| 51 |
+
repeating-linear-gradient(0deg, transparent 0 119px, rgba(26,26,26,.10) 119px 120px),
|
| 52 |
+
repeating-linear-gradient(90deg, transparent 0 119px, rgba(26,26,26,.10) 119px 120px),
|
| 53 |
+
repeating-linear-gradient(0deg, transparent 0 23px, rgba(26,26,26,.055) 23px 24px),
|
| 54 |
+
repeating-linear-gradient(90deg, transparent 0 23px, rgba(26,26,26,.055) 23px 24px),
|
| 55 |
var(--bg);
|
| 56 |
}
|
| 57 |
|
|
|
|
| 405 |
.preset.active { background: #fff; }
|
| 406 |
textarea, input[type=text], select { background: rgba(255,255,255,.94); }
|
| 407 |
textarea:focus, input:focus, select:focus { background: #fff; }
|
| 408 |
+
|
| 409 |
+
/* Panels are opaque against the tinted ground, which is what separates
|
| 410 |
+
content from page now that the ground is visible. */
|
| 411 |
+
.narrative, #bars, .temp-block { background: #fff; }
|
| 412 |
+
.alert { background: rgba(255,255,255,.82); }
|
| 413 |
+
.preset { background: rgba(255,255,255,.92); }
|
| 414 |
+
table { background: rgba(255,255,255,.55); }
|
| 415 |
+
.grid2 th { background: rgba(250,250,250,.95); }
|