aboutsummaryrefslogtreecommitdiff
path: root/_sass/print.css
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-04-28 14:16:08 +0200
committerlonkaars <loek@pipeframe.xyz>2024-04-28 14:16:08 +0200
commit5d088aa25f69afdb9ba208def8c23b4f45bbe0b8 (patch)
treed13f3eb2e7cf7bb63664d43b9c79135808e912a7 /_sass/print.css
parentbc5b85043974e4af9c90962c2acde36b0e7de02a (diff)
use sass + fix code hightlight
Diffstat (limited to '_sass/print.css')
-rw-r--r--_sass/print.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/_sass/print.css b/_sass/print.css
new file mode 100644
index 0000000..4867c83
--- /dev/null
+++ b/_sass/print.css
@@ -0,0 +1,19 @@
+@media print {
+ :root {
+ --nav-width: 0px;
+
+ --bg: #ffffff;
+ --fg: #000000;
+
+ --heliotrope-gray: var(--bg);
+ --purple-navy: #989abb;
+
+ --fire-opal: #ba3321;
+ --cyan-process: #397889;
+ --forest-green-crayola: #376848;
+
+ }
+
+ .centeredPage { grid-gap: var(--page-margins) 0; }
+ pre { border: solid 2px var(--fg); }
+}