feat: add notion style
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
b98c834a3c
commit
f5f5f2bc3d
2 changed files with 51 additions and 0 deletions
|
@ -3,4 +3,5 @@
|
|||
## List of available styles
|
||||
|
||||
* [mikrotik](./mikrotik.user.css)
|
||||
* [notion](./notion.user.css)
|
||||
* [sourcehut](./sourcehut.user.css)
|
||||
|
|
50
notion.user.css
Normal file
50
notion.user.css
Normal file
|
@ -0,0 +1,50 @@
|
|||
/* ==UserStyle==
|
||||
@name notion.so
|
||||
@namespace git.mfocko.xyz/mfocko/dotfiles
|
||||
@updateURL https://git.mfocko.xyz/mfocko/usercss/raw/branch/main/notion.user.css
|
||||
@version 1.1.6
|
||||
@description Allow switching of the fonts on notion.so.
|
||||
@author mfocko <me@mfocko.xyz>
|
||||
@preprocessor stylus
|
||||
@var select monospace-font "Font" [
|
||||
"custom*",
|
||||
"Berkeley Mono Variable",
|
||||
"Cascadia Code NF",
|
||||
"Comic Code Ligatures",
|
||||
"Fira Code",
|
||||
"Hack",
|
||||
"IBM Plex Mono",
|
||||
"Iosevka Term",
|
||||
"Iosevka Term Slab",
|
||||
"Iosevka Comfy",
|
||||
"Pragmasevka",
|
||||
"JetBrains Mono",
|
||||
"JuliaMono",
|
||||
"MonoLisa Variable",
|
||||
"PragmataPro Liga",
|
||||
"PragmataPro Mono Liga",
|
||||
"Rec Mono Linear",
|
||||
"Roboto Mono",
|
||||
"SF Mono",
|
||||
"Source Code Pro",
|
||||
"Victor Mono",
|
||||
]
|
||||
@var text custom-font "Custom font" "monospace"
|
||||
==/UserStyle== */
|
||||
|
||||
if monospace-font=="custom"
|
||||
monospace-font=custom-font
|
||||
|
||||
@-moz-document domain("notion.so") {
|
||||
* [style *=" monospace"] {
|
||||
font-family: monospace-font !important;
|
||||
}
|
||||
|
||||
* [style *=" serif"] {
|
||||
font-family: "Roboto Slab" !important;
|
||||
}
|
||||
|
||||
* [style *=" sans"] {
|
||||
font-family: "Roboto" !important;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue