From 6c0e705005f598a6c2fc309b3e876215ffbedd99 Mon Sep 17 00:00:00 2001 From: synth-ruiner Date: Sat, 23 Dec 2017 21:17:31 +0000 Subject: [PATCH] styled links --- includes/style.css | 3 +++ includes/style.less | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/includes/style.css b/includes/style.css index 4a8f1be..7ceeda0 100644 --- a/includes/style.css +++ b/includes/style.css @@ -14,6 +14,9 @@ body { background-color: #594a54; color: #d3cbd0; } +a { + color: #f69f8f; +} canvas { image-rendering: pixelated; } diff --git a/includes/style.less b/includes/style.less index 52aadd8..5fc473e 100644 --- a/includes/style.less +++ b/includes/style.less @@ -8,6 +8,7 @@ @light: #d3cbd0; @dark: #594a54; +@accent: #f69f8f; // pink * { box-sizing: border-box; @@ -20,6 +21,10 @@ html, body { color: @light; } +a { + color: @accent; +} + canvas { image-rendering: pixelated; }