-
Notifications
You must be signed in to change notification settings - Fork 25
/
z-site-styles.css
49 lines (45 loc) · 1.51 KB
/
z-site-styles.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
/* -------------------------------------------------------------
- for userContent
- modifications for multiple websites
- all scrollbars
- PIP button (picture in picture)
- about:config page
------------------------------------------------------------- */
/* all scrollbars */
:root {
scrollbar-width: auto !important;
scrollbar-color: rgba(170, 170, 170, 0.4) rgba(255,255,255, 0) !important;
}
/* PIP button */
.pip-wrapper {transform: scale(0.6);}
/* about:config page*/
@-moz-document url(chrome://browser/content/browser.xul), url(about:config) {
@media (prefers-color-scheme: dark){
html, body {
background: rgb(43, 42, 51) !important;
}
}
/* ff ultima guide - style 1 */
#toolbar::after {
content: "🇺 Type 'ultima' or 'user.theme' for FF Ultima theme settings";
display: flex;
padding: 10px 1px 0px 5px;
border-radius: var(--uc-all-border-radius);
background: var(--in-content-page-background);
color: white;
font-size: 16px;
}
/* ff ultima guide - style 2 */
/*
body::before {
content: "↓ type 'ultima' to configure the FF Ultima theme ⤝⥄⤞ type 'user.theme' to switch between color schemes ↓";
display: flex;
padding: 8px 8px 8px 3%;
border-radius: var(--uc-all-border-radius);
background: rgb(71, 66, 143);
color: white;
font-weight: bolder;
font-size: 16px;
}
*/
}