From 6fd01fd281db972e55dded24e815a1e20df01a19 Mon Sep 17 00:00:00 2001 From: Basia Baldwin Date: Wed, 16 Oct 2024 13:59:21 -0400 Subject: [PATCH] enable stats change --- css/site.css | 26 +++++++++++++++++++++++++- less/site.less | 39 ++++++++++++++++++++++++++++++++++++--- 2 files changed, 61 insertions(+), 4 deletions(-) diff --git a/css/site.css b/css/site.css index 40962bc2..b75d7408 100644 --- a/css/site.css +++ b/css/site.css @@ -247,8 +247,32 @@ .sidemenu__item a { color: white; } + .enable-stats__desc { + color: white; + } + .enable-stats__desc--scratch { + background-color: #3c4c3d; + } + .enable-stats__desc--integrate { + background-color: #7d5d12; + } .enable-stats__desc--integrate a { - color: #A76000; + color: #FFD8A2; + } + .enable-stats__desc--npm { + background-color: #516664; + } + .enable-stats__desc--do-not { + background-color: #763f56; + } + .enable-stats__desc--style { + background-color: #432155; + } + .enable-stats__icon { + filter: invert(); + } + .enable-stats__heading-icon { + filter: invert(); } } /*# sourceMappingURL=site.css.map */ \ No newline at end of file diff --git a/less/site.less b/less/site.less index 946a976d..ec492a40 100644 --- a/less/site.less +++ b/less/site.less @@ -304,9 +304,42 @@ } } - .enable-stats__desc--integrate { - a { - color: @orange; + .enable-stats { + &__desc { + color: white; + + + &--scratch { + background-color: #3c4c3d; + } + + &--integrate { + background-color: #7d5d12; + + a { + color: #FFD8A2; + } + } + + &--npm { + background-color: #516664; + } + + &--do-not { + background-color: #763f56; + } + + &--style { + background-color: #432155; + } + } + + &__icon { + filter: invert(); + } + + &__heading-icon { + filter: invert(); } } } \ No newline at end of file