From 709f831ee1aac9578970811e78c652ed4e3bd482 Mon Sep 17 00:00:00 2001 From: Nikita Dudnik Date: Thu, 20 Aug 2020 09:54:38 +0200 Subject: [PATCH] fix: make docs table font color white (#2036) --- microsite/static/css/custom.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/microsite/static/css/custom.css b/microsite/static/css/custom.css index 392d9a31c2..c5e76eabe5 100644 --- a/microsite/static/css/custom.css +++ b/microsite/static/css/custom.css @@ -7,6 +7,14 @@ /* your custom css */ +/* override font color for new dark tech docs styling */ +table { + color: white; +} +table tr:nth-child(2n) { + background-color: #2b2b2b; +} + @media only screen and (min-device-width: 360px) and (max-device-width: 736px) { }