From 8334630245e21f543f418e6e6ea06dd020f9991e Mon Sep 17 00:00:00 2001 From: rugk Date: Tue, 5 Jul 2016 19:12:05 +0200 Subject: [PATCH] Add CSS selection --- _sass/_base.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/_sass/_base.scss b/_sass/_base.scss index 25c88daba6..fb2b4df95e 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -238,3 +238,17 @@ pre { } } } + +/** + * Selection + */ + +::-moz-selection { + background-color: lighten(#de8216, 10%); + color: $text-color; +} + +::selection { + background-color: lighten(#de8216, 10%); + color: $text-color; +}