From 8a9efc76ebdb2ddd007ac2e070e0c9b71ad75db4 Mon Sep 17 00:00:00 2001 From: Willem Leuverink Date: Tue, 16 Jan 2024 14:20:18 +0100 Subject: [PATCH] update search results styling --- docs/_sass/custom/custom.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/_sass/custom/custom.scss b/docs/_sass/custom/custom.scss index 939610c..c3f3e07 100644 --- a/docs/_sass/custom/custom.scss +++ b/docs/_sass/custom/custom.scss @@ -52,3 +52,17 @@ div.highlighter-rouge div.highlight { background: #261939; border-radius: 0.5rem; } + +// Search results +.search-results { + background-color: #1A1227A3; + backdrop-filter: blur(6px); +} + +.search-active .search-input { + background-color: transparent; +} + +.search-result:hover, .search-result.active { + background-color: #0A01159E; +}