-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserContent.css
159 lines (134 loc) · 4.37 KB
/
userContent.css
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
:root {
--text: #f5c97d;
--border: #FB9901;
--background: #131312;
}
/* ------ FIREFOX NEW TAB ------ */
@-moz-document url(about:newtab), url(about:home) {
/* ALL */
:root {
text-transform: lowercase !important;
border-radius: 0 !important;
}
/* Remove if you want to use the background-color of your theme: */
body {
background-color: var(--background) !important;
}
button, a {
box-sizing: border-box !important;
border: 1px solid transparent !important;
}
button:hover, a:hover {
border-color: var(--border) !important;
}
span {
color: var(--text) !important;
}
/* FIREFOX LOGO */
.logo-and-wordmark{
position: relative !important;
}
.logo, .wordmark {
display: none !important;
}
/* ASCII created using https://www.asciiart.eu/text-to-ascii-art with the 'Alligator2' font */
.logo-and-wordmark::before {
content: '\A
:::::::::: ::::::::::: ::::::::: :::::::::: :::::::::: :::::::: ::: :::\A
:+: :+: :+: :+: :+: :+: :+: :+: :+: :+:\A
+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ \A
:#::+::# +#+ +#++:++#: +#++:++# :#::+::# +#+ +:+ +#++:+ \A
+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ \A
#+# #+# #+# #+# #+# #+# #+# #+# #+# #+#\A
### ########### ### ### ########## ### ######## ### ###\A
\A
';
}
@keyframes ascii-anim {
25% {
content: '~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.';
}
50% {
content: '.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~';
}
75% {
content: '~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙';
}
}
.logo-and-wordmark::after {
content: '˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~˙~.~';
}
.logo-and-wordmark::before, .logo-and-wordmark::after {
top: 0 !important;
left: 0 !important;
white-space: pre-wrap !important;
font-family: 'Courier New', Courier, monospace;
font-size: 12px;
display: inline-block;
background: linear-gradient(to bottom, #ffae00, #ff0000);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 7px rgba(255, 0, 0, 0.89), 0 0 16px rgba(255, 60, 0, 0.877);
transition: 0.25s;
}
.logo-and-wordmark::after {
animation: ascii-anim 0.75s infinite;
padding-top: 120px;
position: absolute !important;
text-align: center !important;
width: 100%;
}
/* SEARCH BAR */
.search-wrapper {
padding: 0 !important;
}
.search-handoff-button {
background-color: transparent !important;
border: 1px solid var(--border) !important;
border-radius: 0px !important;
}
.context-menu-add-engine { display: none !important }
.search-wrapper {
padding-bottom: 0px !important;
}
.search-wrapper .search-handoff-button, .search-wrapper input {
--newtab-search-icon: url('');
padding-inline-start: 12px !important;
padding-inline-end: 12px !important;
background-size: 18px !important;
background-color: transparent !important;
}
.fake-textbox {
position: relative !important;
color: transparent !important;
opacity: 1.0 !important;
}
.fake-textbox::after {
content: "search..." !important;
color: var(--text) !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
}
.fake-caret {
inset-inline-start: 12px !important;
}
/* PINNED TILES */
.top-site-button .tile {
display: none !important;
}
.top-site-button {
padding: 0px !important;
}
.pinned {
padding: 0 !important;
padding-top: 8px !important;
padding-bottom: 8px !important;
}
.icon-pin-small, .sponsored-label {
display: none !important;
}
.search-inner-wrapper {
width: 96% !important;
}
}