From d1c6524ad7f1a805b2a2b0394df2b8cbb286d3e8 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 25 Aug 2024 00:32:18 +0530 Subject: Refactor firefox config --- modules/firefox.home/chrome/userContent.css | 49 +++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 modules/firefox.home/chrome/userContent.css (limited to 'modules/firefox.home/chrome/userContent.css') diff --git a/modules/firefox.home/chrome/userContent.css b/modules/firefox.home/chrome/userContent.css new file mode 100644 index 0000000..b7361e8 --- /dev/null +++ b/modules/firefox.home/chrome/userContent.css @@ -0,0 +1,49 @@ +@import url('./styles/variables.css'); + +/* @-moz-document domain(moz-extension://292e7676-1ee2-4c2d-8b18-19529d893b17/src/entries/sidebar/sidebar.html) { */ +/* html, body, * { */ +/* border: 5px solid red !important; */ +/* padding: 5rem !important; */ +/* } */ +/* } */ + +@-moz-document domain(lite.duckduckgo.com) { + html, body { + background-color: var(--ff-bg-color-1) !important; + color: white !important; + } + + body { + width: 100%; + margin: auto; + max-width: 900px !important; + } + + a { + color: var(--ff-accent-color-1) !important; + } + + .result-link { + font-size: 1rem !important; + } + + .did-you-mean { + font-size: 0.8rem !important; + } + .did-you-mean br { + display: none !important; + } + + select.submit { + display: none !important; + } + + .link-text { + color: #888 !important; + } + + .header { + font-size: 1rem !important; + } +} + -- cgit v1.3.1