mirror of
https://github.com/hnhx/librex.git
synced 2025-01-26 10:43:05 -03:00
Add files via upload
This commit is contained in:
parent
467509586c
commit
629628c367
2 changed files with 14 additions and 8 deletions
|
@ -7,7 +7,14 @@
|
||||||
|
|
||||||
--button-bg: #303134;
|
--button-bg: #303134;
|
||||||
|
|
||||||
--special-result-border: #bdc1c6;
|
--special-result-border: #5f6368;
|
||||||
|
--special-text-background: #282828;
|
||||||
|
--special-text-color: #cccccc;
|
||||||
|
|
||||||
|
--search-container-text-color: #e8eaed;
|
||||||
|
--search-container-background-color: #333333;
|
||||||
|
|
||||||
|
--hr-color: #303134;
|
||||||
|
|
||||||
--footer-fg: #999da2;
|
--footer-fg: #999da2;
|
||||||
--footer-bg: #161616;
|
--footer-bg: #161616;
|
||||||
|
|
|
@ -138,8 +138,8 @@ a:hover,
|
||||||
.search-container input,
|
.search-container input,
|
||||||
.sub-search-container input {
|
.sub-search-container input {
|
||||||
width: 500px;
|
width: 500px;
|
||||||
color: #e8eaed;
|
color: var(--search-container-text-color);
|
||||||
background-color: #333333;
|
background-color: var(--search-container-background-color);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
|
@ -170,7 +170,7 @@ a:hover,
|
||||||
.sub-search-container hr {
|
.sub-search-container hr {
|
||||||
margin-top: 18px;
|
margin-top: 18px;
|
||||||
margin-bottom: 18px;
|
margin-bottom: 18px;
|
||||||
color: #303134;
|
color: var(--hr-color);
|
||||||
width: 1000%;
|
width: 1000%;
|
||||||
margin-left: -500%;
|
margin-left: -500%;
|
||||||
}
|
}
|
||||||
|
@ -260,12 +260,11 @@ a:hover,
|
||||||
|
|
||||||
.special-result-container {
|
.special-result-container {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 1px solid #5f6368;
|
border: 1px solid var(--special-result-border);
|
||||||
var(--special-result-border);
|
|
||||||
width: 500px;
|
width: 500px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background: #282828;
|
background: var(--special-text-background);
|
||||||
color: #cccccc;
|
color: var(--special-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-result-wrapper {
|
.text-result-wrapper {
|
||||||
|
|
Loading…
Add table
Reference in a new issue