Initial commit

This commit is contained in:
2026-03-02 17:06:32 +00:00
commit 430dd71917
1190 changed files with 622790 additions and 0 deletions

32
.obsidian/plugins/chem/styles.css vendored Normal file
View File

@@ -0,0 +1,32 @@
/*
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.
*/
.chemcard {
background-color: var(--background-secondary-alt);
color: var(--color-base-100);
border-radius: var(--radius-m);
border: 1px solid var(--background-modifier-border);
margin: 0 10px;
padding: 15px 10px;
display: grid;
place-content: center;
place-items: center;
user-select: none;
}
.chem-table {
border-collapse: collapse;
display: grid;
place-items: center;
}
.chem-cell {
padding: 15px 10px;
user-select: none;
}