vault backup: 2024-11-25 12:41:08

This commit is contained in:
Jose
2024-11-25 12:41:08 +01:00
parent 1b5f10c0ac
commit 4572d4b957
11 changed files with 3589 additions and 70 deletions

3451
.obsidian/plugins/html-tabs/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
{
"id": "html-tabs",
"name": "HTML Tabs",
"version": "1.1.0",
"minAppVersion": "1.3.3",
"description": "Create and render Tabs and tab panels in your notes.",
"author": "Patrick Tournet",
"authorUrl": "https://github.com/ptournet",
"isDesktopOnly": false
}

44
.obsidian/plugins/html-tabs/styles.css vendored Normal file
View File

@@ -0,0 +1,44 @@
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.html-tabs {
display: flex;
margin-left: .5rem;
margin-right: .5rem;
margin-bottom: 1rem;
font-size: 1.25rem;
/* line-height: 3rem; */
border-bottom-width: 1px;
border-bottom-style: solid;
border-color: hsla(226, 232, 240, 1);
cursor: pointer;
}
.html-tab {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.html-tab:hover {
color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.75);
}
.html-tab-not-first {
margin-left: 1rem;
}
.html-tab-active {
color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 1);
border-bottom-width: 1px;
border-bottom-style: solid;
border-color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 1);
}
.html-tab-content {
padding: 0.5rem;
}