Initial Commit
6
.obsidian/app.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"newFileLocation": "current",
|
||||
"alwaysUpdateLinks": true,
|
||||
"showUnsupportedFiles": true,
|
||||
"attachmentFolderPath": "media"
|
||||
}
|
3
.obsidian/appearance.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"accentColor": ""
|
||||
}
|
3
.obsidian/backlink.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"backlinkInDocument": true
|
||||
}
|
5
.obsidian/community-plugins.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
[
|
||||
"dataview",
|
||||
"obsidian-icon-folder",
|
||||
"folder-notes"
|
||||
]
|
30
.obsidian/core-plugins-migration.json
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": false,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"properties": false,
|
||||
"page-preview": true,
|
||||
"daily-notes": false,
|
||||
"templates": true,
|
||||
"note-composer": false,
|
||||
"command-palette": true,
|
||||
"slash-command": true,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": true,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": false,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false
|
||||
}
|
18
.obsidian/core-plugins.json
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
[
|
||||
"file-explorer",
|
||||
"global-search",
|
||||
"switcher",
|
||||
"graph",
|
||||
"backlink",
|
||||
"outgoing-link",
|
||||
"tag-pane",
|
||||
"page-preview",
|
||||
"templates",
|
||||
"command-palette",
|
||||
"slash-command",
|
||||
"editor-status",
|
||||
"bookmarks",
|
||||
"markdown-importer",
|
||||
"outline",
|
||||
"file-recovery"
|
||||
]
|
BIN
.obsidian/icons/feather-icons.zip
vendored
Normal file
27
.obsidian/plugins/dataview/data.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"renderNullAs": "\\-",
|
||||
"taskCompletionTracking": false,
|
||||
"taskCompletionUseEmojiShorthand": false,
|
||||
"taskCompletionText": "completion",
|
||||
"taskCompletionDateFormat": "yyyy-MM-dd",
|
||||
"recursiveSubTaskCompletion": false,
|
||||
"warnOnEmptyResult": true,
|
||||
"refreshEnabled": true,
|
||||
"refreshInterval": 2500,
|
||||
"defaultDateFormat": "MMMM dd, yyyy",
|
||||
"defaultDateTimeFormat": "h:mm a - MMMM dd, yyyy",
|
||||
"maxRecursiveRenderDepth": 4,
|
||||
"tableIdColumnName": "File",
|
||||
"tableGroupColumnName": "Group",
|
||||
"showResultCount": true,
|
||||
"allowHtml": true,
|
||||
"inlineQueryPrefix": "=",
|
||||
"inlineJsQueryPrefix": "$=",
|
||||
"inlineQueriesInCodeblocks": true,
|
||||
"enableInlineDataview": true,
|
||||
"enableDataviewJs": true,
|
||||
"enableInlineDataviewJs": true,
|
||||
"prettyRenderInlineFields": true,
|
||||
"prettyRenderInlineFieldsInLivePreview": true,
|
||||
"dataviewJsKeyword": "dataviewjs"
|
||||
}
|
20404
.obsidian/plugins/dataview/main.js
vendored
Normal file
10
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.64",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"isDesktopOnly": false
|
||||
}
|
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
|
@ -0,0 +1,146 @@
|
|||
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
87
.obsidian/plugins/folder-notes/data.json
vendored
Normal file
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"syncFolderName": true,
|
||||
"ctrlKey": true,
|
||||
"altKey": false,
|
||||
"hideFolderNote": true,
|
||||
"templatePath": "",
|
||||
"autoCreate": false,
|
||||
"enableCollapsing": false,
|
||||
"excludeFolders": [],
|
||||
"showDeleteConfirmation": true,
|
||||
"underlineFolder": true,
|
||||
"allowWhitespaceCollapsing": false,
|
||||
"underlineFolderInPath": true,
|
||||
"openFolderNoteOnClickInPath": true,
|
||||
"openInNewTab": true,
|
||||
"folderNoteName": "{{folder_name}}",
|
||||
"folderNoteType": ".md",
|
||||
"disableFolderHighlighting": false,
|
||||
"newFolderNoteName": "{{folder_name}}",
|
||||
"storageLocation": "parentFolder",
|
||||
"syncDelete": false,
|
||||
"showRenameConfirmation": true,
|
||||
"defaultOverview": {
|
||||
"id": "",
|
||||
"folderPath": "",
|
||||
"title": "{{folderName}} overview",
|
||||
"showTitle": false,
|
||||
"depth": 3,
|
||||
"includeTypes": [
|
||||
"folder",
|
||||
"markdown"
|
||||
],
|
||||
"style": "list",
|
||||
"disableFileTag": false,
|
||||
"sortBy": "name",
|
||||
"sortByAsc": true,
|
||||
"showEmptyFolders": false,
|
||||
"onlyIncludeSubfolders": false,
|
||||
"storeFolderCondition": true,
|
||||
"showFolderNotes": false,
|
||||
"disableCollapseIcon": true
|
||||
},
|
||||
"useSubmenus": true,
|
||||
"syncMove": true,
|
||||
"frontMatterTitle": {
|
||||
"enabled": false,
|
||||
"explorer": true,
|
||||
"path": true
|
||||
},
|
||||
"settingsTab": "path",
|
||||
"supportedFileTypes": [
|
||||
"md"
|
||||
],
|
||||
"boldName": false,
|
||||
"boldNameInPath": false,
|
||||
"cursiveName": false,
|
||||
"cursiveNameInPath": false,
|
||||
"disableOpenFolderNoteOnClick": false,
|
||||
"openByClick": true,
|
||||
"openWithCtrl": false,
|
||||
"openWithAlt": false,
|
||||
"excludeFolderDefaultSettings": {
|
||||
"type": "folder",
|
||||
"path": "",
|
||||
"subFolders": true,
|
||||
"disableSync": true,
|
||||
"disableAutoCreate": true,
|
||||
"disableFolderNote": false,
|
||||
"enableCollapsing": false,
|
||||
"position": 0,
|
||||
"excludeFromFolderOverview": false,
|
||||
"string": ""
|
||||
},
|
||||
"excludePatternDefaultSettings": {
|
||||
"type": "pattern",
|
||||
"path": "",
|
||||
"subFolders": true,
|
||||
"disableSync": true,
|
||||
"disableAutoCreate": true,
|
||||
"disableFolderNote": false,
|
||||
"enableCollapsing": false,
|
||||
"position": 0,
|
||||
"excludeFromFolderOverview": false,
|
||||
"string": ""
|
||||
},
|
||||
"hideCollapsingIcon": false
|
||||
}
|
5613
.obsidian/plugins/folder-notes/main.js
vendored
Normal file
12
.obsidian/plugins/folder-notes/manifest.json
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"id": "folder-notes",
|
||||
"name": "Folder notes",
|
||||
"version": "1.7.5",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Create notes within folders that can be accessed without collapsing the folder, similar to the functionality offered in Notion.",
|
||||
"author": "Lost Paul",
|
||||
"authorUrl": "https://github.com/LostPaul",
|
||||
"fundingUrl": "https://ko-fi.com/paul305844",
|
||||
"helpUrl": "https://lostpaul.github.io/obsidian-folder-notes/",
|
||||
"isDesktopOnly": false
|
||||
}
|
239
.obsidian/plugins/folder-notes/styles.css
vendored
Normal file
|
@ -0,0 +1,239 @@
|
|||
.fn-whitespace-stop-collapsing .nav-folder-title-content {
|
||||
flex-grow: 1 !important;
|
||||
padding-bottom: 4px !important;
|
||||
padding-top: 4px !important;
|
||||
}
|
||||
|
||||
.fn-whitespace-stop-collapsing .nav-folder-title {
|
||||
padding-bottom: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
.fn-whitespace-stop-collapsing .nav-folder-collapse-indicator {
|
||||
margin-top: 4px !important;
|
||||
}
|
||||
|
||||
body:not(.is-grabbing) .tree-item-self.fn-is-active:hover,
|
||||
.tree-item-self.fn-is-active {
|
||||
color: var(--nav-item-color-active);
|
||||
background-color: var(--nav-item-background-active);
|
||||
font-weight: var(--nav-item-weight-active);
|
||||
}
|
||||
|
||||
.has-folder-note .nav-folder-title-content:hover,
|
||||
.has-folder-note.view-header-breadcrumb:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.hide-folder-note .is-folder-note {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hide-folder .folder-name {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-folder-collapse-indicator:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.fn-excluded-folder-heading {
|
||||
margin-top: 0 !important;
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.add-exclude-folder-item {
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.fn-exclude-folder-list {
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.fn-exclude-folder-list.setting-item {
|
||||
border-top: 0 !important;
|
||||
border-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.fn-exclude-folder-list .setting-item-control {
|
||||
display: flex;
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
|
||||
.fn-exclude-folder-list .setting-item-info {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.fn-exclude-folder-list .search-input-container {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.fn-confirmation-modal {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
:not(.is-phone) .fn-confirmation-modal-button {
|
||||
margin-right: 0.7rem;
|
||||
|
||||
}
|
||||
|
||||
:not(.is-phone) .fn-delete-confirmation-modal-buttons {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.fn-delete-confirmation-modal-buttons span:hover,
|
||||
.fn-delete-confirmation-modal-buttons input:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
:not(.is-phone) .fn-delete-confirmation-modal-buttons .fn-confirmation-modal-button {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
:not(.is-phone) .fn-delete-confirmation-modal-buttons input[type="checkbox"] {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.is-phone .fn-delete-confirmation-modal-buttons {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.is-phone .fn-delete-confirmation-modal-buttons .fn-confirmation-modal-button {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
/* Folder overview */
|
||||
|
||||
.fn-folder-overview-collapse-icon {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.fn-has-no-files .collapse-icon {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.folder-overview-list {
|
||||
margin-top: 0 !important;
|
||||
margin-bottom: 0 !important;
|
||||
padding-bottom: 1.200 !important;
|
||||
padding-top: 1.200 !important;
|
||||
}
|
||||
|
||||
.folder-overview-list-item {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
||||
.folder-overview-list::marker {
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.folder-list::marker {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.folder-overview-grid {
|
||||
display: grid;
|
||||
grid-gap: 20px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
.folder-overview-grid-item-article article {
|
||||
padding: 15px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.folder-overview-grid-item-article a {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.folder-overview-grid-item-article h1 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
|
||||
.folder-overview-grid-item {
|
||||
flex: 1 1 auto;
|
||||
margin-right: 1.200rem;
|
||||
margin-bottom: 1.200rem;
|
||||
}
|
||||
|
||||
.fn-confirmation-modal .setting-item {
|
||||
border-top: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
|
||||
.pointer-cursor {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
|
||||
/* Setting tab style */
|
||||
.fn-settings-tab-bar {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.fn-settings-tab {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: var(--size-4-2);
|
||||
padding: 10px;
|
||||
border: 1px solid var(--background-modifier-border)
|
||||
}
|
||||
|
||||
.fn-settings-tab-active {
|
||||
background-color: var(--color-accent);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.fn-settings-tab-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.fn-settings-tab-icon {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* File explorer & path styles */
|
||||
|
||||
.folder-note-underline .has-folder-note .nav-folder-title-content {
|
||||
text-decoration-line: underline;
|
||||
text-decoration-color: var(--text-faint);
|
||||
text-decoration-thickness: 2px;
|
||||
text-underline-offset: 1px;
|
||||
}
|
||||
|
||||
.folder-note-underline-path .has-folder-note.view-header-breadcrumb {
|
||||
text-decoration-line: underline;
|
||||
text-decoration-color: var(--text-faint);
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 2px;
|
||||
}
|
||||
|
||||
.folder-note-bold .has-folder-note .nav-folder-title-content,
|
||||
.folder-note-bold-path .has-folder-note.view-header-breadcrumb {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.folder-note-cursive .has-folder-note .nav-folder-title-content,
|
||||
.folder-note-cursive-path .has-folder-note.view-header-breadcrumb {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.fn-hide-collapse-icon .only-has-folder-note .tree-item-icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
29
.obsidian/plugins/obsidian-icon-folder/data.json
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"settings": {
|
||||
"migrated": 4,
|
||||
"iconPacksPath": ".obsidian/icons",
|
||||
"fontSize": 16,
|
||||
"emojiStyle": "twemoji",
|
||||
"iconColor": null,
|
||||
"recentlyUsedIcons": [
|
||||
"🇺🇸",
|
||||
"🇫🇷"
|
||||
],
|
||||
"recentlyUsedIconsSize": 5,
|
||||
"rules": [],
|
||||
"extraMargin": {
|
||||
"top": 0,
|
||||
"right": 4,
|
||||
"bottom": 0,
|
||||
"left": 0
|
||||
},
|
||||
"iconInTabsEnabled": false,
|
||||
"iconInTitleEnabled": false,
|
||||
"iconInFrontmatterEnabled": false,
|
||||
"iconsBackgroundCheckEnabled": true,
|
||||
"iconsInNotesEnabled": true,
|
||||
"iconIdentifier": ":"
|
||||
},
|
||||
"fr": "🇫🇷",
|
||||
"en": "🇺🇸"
|
||||
}
|
5971
.obsidian/plugins/obsidian-icon-folder/main.js
vendored
Normal file
10
.obsidian/plugins/obsidian-icon-folder/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-icon-folder",
|
||||
"name": "Iconize",
|
||||
"version": "2.10.0",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
|
||||
"author": "Florian Woelki",
|
||||
"authorUrl": "https://florianwoelki.com/",
|
||||
"isDesktopOnly": false
|
||||
}
|
110
.obsidian/plugins/obsidian-icon-folder/styles.css
vendored
Normal file
|
@ -0,0 +1,110 @@
|
|||
.iconize-title-icon {
|
||||
max-width: var(--max-width);
|
||||
width: var(--line-width);
|
||||
margin-inline: var(--content-margin) !important;
|
||||
}
|
||||
|
||||
.iconize-icon {
|
||||
border: 1px solid transparent;
|
||||
margin: 0px 4px 0px 0px;
|
||||
display: flex;
|
||||
align-self: center;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.nav-folder-title,
|
||||
.nav-file-title {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.iconize-setting input[type='color'] {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results {
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.prompt .iconize-subheadline {
|
||||
margin-top: 12px;
|
||||
font-size: 12px;
|
||||
color: gray;
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 6;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.iconize-modal.prompt-results {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
.prompt .iconize-subheadline {
|
||||
grid-column-end: 4;
|
||||
}
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results .suggestion-item {
|
||||
cursor: pointer;
|
||||
white-space: pre-wrap;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
padding: 16px 8px;
|
||||
line-break: auto;
|
||||
word-break: break-word;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results
|
||||
.suggestion-item.suggestion-item__center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-icon-preview {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
color: currentColor;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.iconize-dragover {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.iconize-dragover-el {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-secondary-alt);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Custom rule modal. */
|
||||
.iconize-custom-modal .modal-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-custom-modal .modal-content input {
|
||||
width: 100%;
|
||||
margin-right: 0.5rem;
|
||||
}
|
207
.obsidian/workspace.json
vendored
Normal file
|
@ -0,0 +1,207 @@
|
|||
{
|
||||
"main": {
|
||||
"id": "be9deeb449429da4",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "a852f121da518d04",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "33364af396fe796a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "fr/index.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "27f083e09f7432c6",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "fr/classes.md",
|
||||
"mode": "source",
|
||||
"backlinks": true,
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "57e26d8442a44259",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "index.md",
|
||||
"mode": "source",
|
||||
"backlinks": true,
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 2
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "d907bd8c452bf38e",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "4d110daeda144538",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "a2a9010619a6578a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "aa7e81015e1ebc6c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "path:\"media/\" ",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "65467ece34b2afcb",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 297.5
|
||||
},
|
||||
"right": {
|
||||
"id": "cf0a8b60d84c9464",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "08a0bec17b7baacc",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "c06742a3827dc484",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "index.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "a72106ae733e2848",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "index.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "8ac2069edbb3befa",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "b10c2ddf01a52bc7",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "index.md"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300,
|
||||
"collapsed": true
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Ouvrir le sélecteur rapide": false,
|
||||
"graph:Ouvrir la vue graphique": false,
|
||||
"templates:Insérer le modèle": false,
|
||||
"command-palette:Ouvrir la palette de commandes": false,
|
||||
"markdown-importer:Ouvrir l'importateur Markdown": false
|
||||
}
|
||||
},
|
||||
"active": "57e26d8442a44259",
|
||||
"lastOpenFiles": [
|
||||
"en/index.md",
|
||||
"fr/index.md",
|
||||
"fr/classes/scholar.md",
|
||||
"fr/books/Adventurers.md",
|
||||
"media/classes/scholar.png",
|
||||
"media/classes",
|
||||
"fr/books.md",
|
||||
"fr/classes.md",
|
||||
"en/books.md",
|
||||
"en/classes.md",
|
||||
"en/classes",
|
||||
"fr/classe/Sans titre",
|
||||
"fr/classes",
|
||||
"media/books/ADV01_BC_EN.png",
|
||||
"media/Fateforge_Logo_white.png",
|
||||
"media/Fateforge_Logo_black.png",
|
||||
"media/Dragons-Fateforge-5e-logo.png",
|
||||
"media/Dragons_logo.png",
|
||||
"media/books/source.psd",
|
||||
"media/books/LEG12_BC_FR.png",
|
||||
"media/books/LEG12_BC_EN.png",
|
||||
"media/books/LEG11_BC_FR.png",
|
||||
"media/books/LEG10_BC_FR_OLD.png",
|
||||
"media/books",
|
||||
"media",
|
||||
"en/books",
|
||||
"fr/books",
|
||||
"index.md",
|
||||
"en"
|
||||
]
|
||||
}
|
0
en/books.md
Normal file
0
en/classes.md
Normal file
6
en/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: Welcome in Eana
|
||||
aliases:
|
||||
- home
|
||||
---
|
||||
Welcome to Fateforge.tools !
|
0
fr/books.md
Normal file
11
fr/books/Adventurers.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: Aventuriers
|
||||
thumbnail: "[[ADV01_BC_FR.png]]"
|
||||
---
|
||||
**AVENTURIERS** est le livre de base la gamme de jeu de rôle DRAGONS contenant tout ce qu’il faut pour jouer et créer ses personnages. Destiné aux joueurs et au meneur, il se compose de trois parties :
|
||||
|
||||
- **Création de personnage** : Déterminez avec votre meneur dans quelles conditions votre personnage accède à l’éveil à la magie, et faites votre choix parmi toutes les options qui s’offrent à vous, notamment : neuf espèces jouables ; dix-huit [[civilisations]] ; un pas-à-pas pour concevoir des historiques personnalisés ; treize [[classes]] – dont le [[scholar|Lettré]], un érudit inventif et capable d’agir même dans les régions privées de magie ; de nombreux dons pour accompagner l’évolution de votre héros.
|
||||
|
||||
- **Vie quotidienne :** Découvrez la mythique [[Cité franche]], ainsi que toutes les règles permettant de donner corps aux voyages et à la vie quotidienne. Le mystère, l’exploration et la découverte sont au cœur de l’expérience du jeu. Que vous vous déplaciez à pied, en bateau ou en [[nefélytre]], répondez à l’appel de l’aventure !
|
||||
|
||||
- **Règles du jeu :** Le système est organisé autour de quatre pôles : les caractéristiques, l’aventure, le combat et la santé. Les règles optionnelles sont présentées à l’aide d’un système modulaire permettant à chaque meneur de définir son propre style de jeu.
|
3
fr/classes.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
title: Classes
|
||||
---
|
10
fr/classes/scholar.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Lettré
|
||||
aliases:
|
||||
- Lettré
|
||||
---
|
||||
Il existe des lettrés dans toutes les civilisations, et d'ailleurs au fond, ce qui constitue l'essence de ce héros, c'est moins sa somme de connaissance que sa curiosité et sa capacité d'adaptation. Il est capable d'éclairs de génie et de trouvailles brillantes. C'est un touche à tout amusant à jouer
|
||||
|
||||
![[scholar.png]]
|
||||
_Une lettrée des terres de [[Mibu]], par [[Gawain]]_
|
||||
|
6
fr/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: Bienvenue sur Eana
|
||||
aliases:
|
||||
- accueil
|
||||
---
|
||||
Bienvenue sur Fateforge.tools !
|
4
index.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Bienvenue sur Eana
|
||||
---
|
||||
Bienvenue sur Fateforge.tools !
|
BIN
media/Dragons-Fateforge-5e-logo.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
media/Dragons_logo.png
Normal file
After Width: | Height: | Size: 388 KiB |
BIN
media/FateforgeTool_logo_80.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
media/Fateforge_Logo_black.png
Normal file
After Width: | Height: | Size: 169 KiB |
BIN
media/Fateforge_Logo_white.png
Normal file
After Width: | Height: | Size: 198 KiB |
BIN
media/books/ADV01_BC_EN.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/ADV01_BC_FR.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
media/books/ADV01_BC_Textless.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
media/books/ADV01_RD_FR.png
Normal file
After Width: | Height: | Size: 3 MiB |
BIN
media/books/ADV01_RD_Textless.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
media/books/Box_DR.jpg
Normal file
After Width: | Height: | Size: 342 KiB |
BIN
media/books/Box_DR_2.jpg
Normal file
After Width: | Height: | Size: 224 KiB |
BIN
media/books/Box_GV.jpg
Normal file
After Width: | Height: | Size: 401 KiB |
BIN
media/books/Box_GV_2.jpg
Normal file
After Width: | Height: | Size: 401 KiB |
BIN
media/books/Box_GV_3.jpg
Normal file
After Width: | Height: | Size: 198 KiB |
BIN
media/books/CRE01_BC_EN.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/CRE01_BC_FR.png
Normal file
After Width: | Height: | Size: 3 MiB |
BIN
media/books/CRE01_RD_EN.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
media/books/CRE01_RD_FR.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/CRE01_RD_Textless.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
media/books/CRE02_BC_EN.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
media/books/CRE02_BC_FR.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
media/books/CRE02_DR_FR.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/DRA-ECR-CITE-FR_large.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
media/books/DRA-ECR-DR_large.png
Normal file
After Width: | Height: | Size: 394 KiB |
BIN
media/books/DRA_ANN-E2_large.jpg
Normal file
After Width: | Height: | Size: 138 KiB |
BIN
media/books/DRA_ANN_Voyage_large.jpg
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
media/books/DRA_ECR-GV_large.png
Normal file
After Width: | Height: | Size: 388 KiB |
BIN
media/books/DRA_ECR-Netherworld_large.png
Normal file
After Width: | Height: | Size: 385 KiB |
BIN
media/books/ECR_GV.jpg
Normal file
After Width: | Height: | Size: 206 KiB |
BIN
media/books/ENC01_BC_EN.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
media/books/ENC01_BC_FR.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
media/books/ENC01_DR_FR.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
media/books/ENC02_BC_FR.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
media/books/ENC02_RD_FR.png
Normal file
After Width: | Height: | Size: 3 MiB |
BIN
media/books/GRI01_BC_EN.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
media/books/GRI01_BC_FR.png
Normal file
After Width: | Height: | Size: 3.5 MiB |
BIN
media/books/GRI01_BC_Textless.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
media/books/GRI01_RD_FR.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
media/books/GRI01_RD_Textless.png
Normal file
After Width: | Height: | Size: 2 MiB |
BIN
media/books/GRI02_BC_FR.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
media/books/GUI01_BC_EN.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
media/books/GUI01_BC_FR.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/GUI02_BC_FR.png
Normal file
After Width: | Height: | Size: 3.5 MiB |
BIN
media/books/LEG01_BC_FR.png
Normal file
After Width: | Height: | Size: 3 MiB |
BIN
media/books/LEG02_BC_EN.png
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
media/books/LEG02_BC_FR.png
Normal file
After Width: | Height: | Size: 3 MiB |
BIN
media/books/LEG02_BC_Textless.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/LEG03_BC_EN.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
media/books/LEG03_BC_FR.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
media/books/LEG04_BC_EN.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
media/books/LEG04_BC_FR.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
media/books/LEG05_BC_FR.png
Normal file
After Width: | Height: | Size: 2.5 MiB |
BIN
media/books/LEG06_BC_FR.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
media/books/LEG07_BC_FR.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
media/books/LEG08_BC_FR.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
media/books/LEG09_BC_FR.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
media/books/LEG10_BC_FR.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
media/books/LEG10_BC_FR_OLD.png
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
media/books/LEG11_BC_FR.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
media/books/LEG12_BC_EN.png
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
media/books/LEG12_BC_FR.png
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
media/books/source.psd
Normal file
BIN
media/classes/scholar.png
Normal file
After Width: | Height: | Size: 1,013 KiB |
BIN
media/logoDragons.png
Normal file
After Width: | Height: | Size: 78 KiB |