Update css file
parent
783b98fb49
commit
b2a118abad
|
@ -1,9 +1,6 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
--note-icon-1: url(/img/icons8-star-wars.svg);
|
|
||||||
--note-icon-2: url(/img/icons8-r2-d2.svg);
|
|
||||||
--note-icon-3: url(/img/icons8-jedi-order.svg);
|
|
||||||
--note-icon-fallback: url(/img/default-note-icon.svg);
|
|
||||||
/***
|
/***
|
||||||
ADD YOUR CUSTOM STYLIING HERE. (INSIDE THE body {...} section.)
|
ADD YOUR CUSTOM STYLIING HERE. (INSIDE THE body {...} section.)
|
||||||
IT WILL TAKE PRECEDENCE OVER THE STYLING IN THE STYLE.CSS FILE.
|
IT WILL TAKE PRECEDENCE OVER THE STYLING IN THE STYLE.CSS FILE.
|
||||||
|
@ -16,5 +13,25 @@ body {
|
||||||
// color: black;
|
// color: black;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
body.title-note-icon .cm-s-obsidian > header > h1[data-note-icon="r2"]::before,
|
||||||
|
body.filetree-note-icon .filename[data-note-icon="r2"]::before,
|
||||||
|
body.links-note-icon .internal-link[data-note-icon="r2"]::before,
|
||||||
|
body.backlinks-note-icon .backlink[data-note-icon="r2"]::before {
|
||||||
|
background-image: url(/img/icons8-r2-d2.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.title-note-icon .cm-s-obsidian > header > h1[data-note-icon="jedi"]::before,
|
||||||
|
body.filetree-note-icon .filename[data-note-icon="jedi"]::before,
|
||||||
|
body.links-note-icon .internal-link[data-note-icon="jedi"]::before,
|
||||||
|
body.backlinks-note-icon .backlink[data-note-icon="jedi"]::before {
|
||||||
|
background-image: url(/img/icons8-jedi-order.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.title-note-icon .cm-s-obsidian > header > h1[data-note-icon="starwars"]::before,
|
||||||
|
body.filetree-note-icon .filename[data-note-icon="starwars"]::before,
|
||||||
|
body.links-note-icon .internal-link[data-note-icon="starwars"]::before,
|
||||||
|
body.backlinks-note-icon .backlink[data-note-icon="starwars"]::before {
|
||||||
|
background-image: url(/img/icons8-star-wars.svg);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue