blob: eaa8ddfd541691c8e1d300246d7968a83031ab7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");*/
@namespace url("http://www.w3.org/1999/xhtml");
:root {
scrollbar-color: #162026 #061115;
}
* {
scrollbar-width: medium;
}
@-moz-document url("about:sessionrestore") {
/*
* {
font-family: "Roboto", sans-serif !important;
}*/
body {
background-color: #061115 !important;
}
#tabsToggle {
display: none;
}
html|button:enabled:hover,
html|select:not([size], [multiple]):enabled:hover,
html|input[type="color"]:hover,
xul|button:not([disabled="true"]):hover,
xul|menulist:not([disabled="true"]):hover {
border-color: #000a0e !important;
background-color: #0d181c !important;
}
html|button[autofocus],
html|button[type="submit"],
xul|button[default],
button.primary {
border-color: #000a0e !important;
background-color: #6791c9 !important;
}
}
@-moz-document url("about:newtab"), url("about:home") {
/*
* {
font-family: "Roboto", sans-serif !important;
}
*/
body {
background-color: #061115 !important;
}
.SnippetBaseContainer {
display: none !important;
}
.search-handoff-button {
border-radius: 12px !important;
border-width: 2px !important;
border-color: #000a0e !important;
background-size: 0px !important;
background-color: #0d181c !important;
padding-inline-start: 10px !important;
padding-inline-end: 10px !important;
}
.icon-settings {
display: none !important;
}
.fake-textbox {
text-align: center !important;
}
.search-wrapper input {
background-color: #0d181c !important;
border-radius: 0px !important;
background-image: none !important;
background-size: none !important;
text-align: center !important;
font-size: 17px !important;
padding-inline-start: 10px !important;
padding-inline-end: 10px !important;
}
.search-wrapper input:focus {
text-align: left !important;
}
.body-wrapper {
display: none !important;
}
}
|