mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2025-08-19 04:47:21 +02:00
Compare commits
12 Commits
b469f427db
...
c9a95e4896
Author | SHA1 | Date | |
---|---|---|---|
c9a95e4896 | |||
5cdbde6cee | |||
b05a84cb0a | |||
8bb946b79f | |||
0b4abcb94b | |||
799b8c421f | |||
4e82b65432 | |||
21882319be | |||
2e4a49e1ea | |||
4efa34eb99 | |||
79d4a1c445 | |||
ec049d0b1a |
@ -1,7 +1,7 @@
|
|||||||
! Version: 202405291502
|
! Version: 2024.22.0
|
||||||
! Description: Aminda gist blocklist test
|
! Description: Aminda gist blocklist test
|
||||||
! Title: Aminda's small blocklist
|
! Title: Aminda's small blocklist
|
||||||
! Last modified: 2024-05-29T15:02:08+03:00
|
! Last modified: 2024-05-30T15:43:50+03:00
|
||||||
! Expires: 24 hours
|
! Expires: 24 hours
|
||||||
! Syntax: Domains (wildcards)
|
! Syntax: Domains (wildcards)
|
||||||
! License: CC-0
|
! License: CC-0
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
/* ==UserStyle==
|
|
||||||
@name Dark Amber
|
|
||||||
@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/amber.user.css
|
|
||||||
@namespace eu.aminda
|
|
||||||
@version 2024.22.3
|
|
||||||
@preprocessor stylus
|
|
||||||
@var select FontSet "Font Set" {
|
|
||||||
"Liberation Serif, Tinos, Times New Roman, serif": 'serif',
|
|
||||||
"Liberation Sans, Arimo, Arial, sans-serif": 'sans-serif'
|
|
||||||
}
|
|
||||||
==/UserStyle== */
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
:root {
|
|
||||||
color-scheme: only dark !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
*:not(a) {
|
|
||||||
color: revert !important;
|
|
||||||
overflow-wrap: break-word !important;
|
|
||||||
hyphens: auto !important;
|
|
||||||
color: #ffb700 !important;
|
|
||||||
border-color: #ffb700 !important;
|
|
||||||
background-color: #000000 !important;
|
|
||||||
font-family: FontSet !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: revert !important;
|
|
||||||
text-decoration: underline !important;
|
|
||||||
font-family: FontSet !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
|
||||||
pre {
|
|
||||||
font-family: $monospace-font-family !important;
|
|
||||||
font-size: 0.8em !important;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
/* ==UserStyle==
|
|
||||||
@name Revert
|
|
||||||
@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css
|
|
||||||
@namespace eu.aminda
|
|
||||||
@version 2024.22.0
|
|
||||||
@var select FontSet "Font Set" {
|
|
||||||
"Liberation Serif, Tinos, Times New Roman, serif": 'serif',
|
|
||||||
"Liberation Sans, Arimo, Arial, sans-serif": 'sans-serif'
|
|
||||||
}
|
|
||||||
==/UserStyle== */
|
|
||||||
|
|
||||||
:root {
|
|
||||||
color-scheme: dark light !important;
|
|
||||||
}
|
|
||||||
* {
|
|
||||||
font-family: FontSet !important;
|
|
||||||
color: revert !important;
|
|
||||||
border-color: revert !important;
|
|
||||||
background-color: revert !important;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
|
||||||
code,
|
|
||||||
pre {
|
|
||||||
font-family: "Liberation Mono", "Cousine", "Courier New", monospace !important;
|
|
||||||
}
|
|
10
web-browsers/usercss/black-background.user.css
Normal file
10
web-browsers/usercss/black-background.user.css
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/* ==UserStyle==
|
||||||
|
@name (AMOLED) Black Background
|
||||||
|
@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/usercss/black-background.user.css
|
||||||
|
@namespace eu.aminda
|
||||||
|
@version 2024.22.2
|
||||||
|
==/UserStyle== */
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #000000 !important;
|
||||||
|
}
|
40
web-browsers/usercss/change-fonts.user.css
Normal file
40
web-browsers/usercss/change-fonts.user.css
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/* ==UserStyle==
|
||||||
|
@name Change Fonts
|
||||||
|
@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/usercss/change-fonts.user.css
|
||||||
|
@namespace eu.aminda
|
||||||
|
@version 2024.22.6
|
||||||
|
@var select FontSet "Font Set" {
|
||||||
|
"System": "system-ui",
|
||||||
|
"Serif": "ui-serif, Liberation Serif, Tinos, Times New Roman, serif",
|
||||||
|
"Sans Serif": "ui-sans-serif, Liberation Sans, Arimo, Arial, sans-serif"
|
||||||
|
}
|
||||||
|
==/UserStyle== */
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--a-monospace-fonts: "ui-monospace, Liberation Mono", "Cousine",
|
||||||
|
"Courier New", monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Use the variable from above. */
|
||||||
|
* {
|
||||||
|
font-family: var(--FontSet) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: var(--FontSet) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Code blocks preferably use monospace font, which is specified here then. */
|
||||||
|
code,
|
||||||
|
pre {
|
||||||
|
font-family: var(--a-monospace-fonts) !important;
|
||||||
|
@font-face {
|
||||||
|
font-family: var(--a-monospace-fonts) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* I have Firefox always underlining links and not seeing it on Android etc.
|
||||||
|
bothers me.*/
|
||||||
|
a {
|
||||||
|
text-decoration: underline !important;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user