Better Searx White Theme(searx.be)

all features below(inside script)

当前为 2021-10-12 提交的版本,查看 最新版本

// ==UserScript==
// @name         Better Searx White Theme(searx.be)
// @namespace    -
// @version      0.1
// @description  all features below(inside script)
// @author       Not You
// @match        *://searx.be/*
// @grant        none
// ==/UserScript==

/*
- Invisible navigation bar
- Darker links
- Darker categories font and color under them
- Darker description
*/

(function() {
let css = `

.searxng-navbar {
background: #fff;
}

.searxng-navbar .instance a {
color: #161616;
}

.searxng-navbar a, .searxng-navbar a:hover {
color: #161616;
}

#categories input[type="checkbox"]:checked + label, .search_categories input[type="checkbox"]:checked + label {
border-bottom: #161616 5px solid;
}

.result-content, .result-format, .result-source {
margin-top: 2px;
margin-bottom: 0;
word-wrap: break-word;
color: #505050;
font-size: 13px;
}

.result_header a:hover {
color: #161616;
}

a:focus, a:hover {
color: #161616;
text-decoration: underline;
}

#categories input[type="checkbox"]:checked + label, .search_categories input[type="checkbox"]:checked + label {
border-bottom: #161616 5px solid;
}

`;
if (typeof GM_addStyle !== "undefined") {
  GM_addStyle(css);
} else {
  let styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(css));
  (document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();