Table of Contents
* Generic Syntax
* Main Options
* Encoding :
| /* | |
| clean-embeds.css snippet | |
| Removes title, link, padding, margins from embeds, | |
| so they really look like the same note. | |
| To be used with `cssclass: clean-embeds` in YAML frontmatter. | |
| 2021-06-04 Matthias C. Hormann (Moonbase59) | |
| https://forum.obsidian.md/t/meta-post-common-css-hacks/1978/394 |
| // ==UserScript== | |
| // @name Steam Community - Correctly sized backgrounds for 16:10 or 4:3 | |
| // @namespace Anijatsu's_1 | |
| // @include *http*://steamcommunity.com/id/* | |
| // @include *http*://www.steamcommunity.com/id/* | |
| // @version v0.2 | |
| // @grant none | |
| // ==/UserScript== | |
| if (document.getElementsByClassName("profile_page has_profile_background").length == 1) | |
| {var x = document.getElementsByClassName("profile_page has_profile_background").item(0); |