first commit

This commit is contained in:
2025-11-13 21:11:40 +01:00
commit ec7ae1b90f
45 changed files with 38454 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"defaultViewMode": "preview",
"livePreview": true,
"showFrontmatter": true,
"foldHeading": true,
"foldIndent": true,
"showLineNumber": false,
"strictLineBreaks": false,
"newLinkFormat": "relative",
"useMarkdownLinks": true,
"alwaysUpdateLinks": true
}
+7
View File
@@ -0,0 +1,7 @@
{
"baseFontSize": 16,
"theme": "system",
"enabledCssSnippets": [
"training-plan"
]
}
+33
View File
@@ -0,0 +1,33 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"outgoing-link": true,
"tag-pane": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"markdown-importer": true,
"zk-prefixer": false,
"random-note": false,
"outline": false,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false,
"canvas": true,
"footnotes": false,
"properties": false,
"bookmarks": true,
"bases": true,
"webviewer": false
}
+5
View File
@@ -0,0 +1,5 @@
{
"folder": "Träningsdagbok",
"format": "YYYY-MM-DD",
"template": "Templates/Daglig träning"
}
+51
View File
@@ -0,0 +1,51 @@
{
"collapse-filter": false,
"search": "",
"showTags": true,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": false,
"colorGroups": [
{
"query": "tag:#fas1",
"color": {
"a": 1,
"rgb": 5025616
}
},
{
"query": "tag:#fas2",
"color": {
"a": 1,
"rgb": 2201331
}
},
{
"query": "tag:#fas3",
"color": {
"a": 1,
"rgb": 16750592
}
},
{
"query": "tag:#fas4",
"color": {
"a": 1,
"rgb": 10233776
}
}
],
"collapse-display": false,
"showArrow": true,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": false,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": false
}
+3
View File
@@ -0,0 +1,3 @@
{
"training-plan": true
}
+80
View File
@@ -0,0 +1,80 @@
/* Training Plan Styling */
/* Phase headers with colors */
.markdown-preview-view h1:contains("Fas 1"),
.markdown-preview-view h1:contains("FAS1") {
color: #4CAF50;
border-left: 5px solid #4CAF50;
padding-left: 10px;
}
.markdown-preview-view h1:contains("Fas 2"),
.markdown-preview-view h1:contains("FAS2") {
color: #2196F3;
border-left: 5px solid #2196F3;
padding-left: 10px;
}
.markdown-preview-view h1:contains("Fas 3"),
.markdown-preview-view h1:contains("FAS3") {
color: #FF9800;
border-left: 5px solid #FF9800;
padding-left: 10px;
}
.markdown-preview-view h1:contains("Fas 4"),
.markdown-preview-view h1:contains("FAS4") {
color: #9C27B0;
border-left: 5px solid #9C27B0;
padding-left: 10px;
}
/* Week headers */
.markdown-preview-view h3:contains("Vecka") {
background-color: rgba(100, 100, 100, 0.1);
padding: 5px 10px;
border-radius: 5px;
}
/* Recovery week styling */
.markdown-preview-view h3:contains("Återhämtning"),
.markdown-preview-view p:contains("Återhämtningsvecka") {
background-color: rgba(255, 200, 100, 0.2);
padding: 5px;
border-left: 3px solid #FFA500;
}
/* Competition/race styling */
.markdown-preview-view strong:contains("VÄTTERNRUNDAN"),
.markdown-preview-view strong:contains("VANSBRO"),
.markdown-preview-view strong:contains("LIDINGÖLOPPET"),
.markdown-preview-view strong:contains("VASALOPPET") {
color: #E91E63;
font-size: 1.1em;
}
/* Table styling for training overview */
.markdown-preview-view table {
border-collapse: collapse;
width: 100%;
margin: 20px 0;
}
.markdown-preview-view table th {
background-color: rgba(100, 100, 255, 0.1);
font-weight: bold;
padding: 10px;
}
.markdown-preview-view table td {
padding: 8px;
border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}
/* Callout-style boxes for tips */
.markdown-preview-view blockquote {
border-left: 4px solid #2196F3;
background-color: rgba(33, 150, 243, 0.05);
padding: 10px 15px;
margin: 15px 0;
}
+3
View File
@@ -0,0 +1,3 @@
{
"folder": "Templates"
}
+8
View File
@@ -0,0 +1,8 @@
{
"types": {
"aliases": "aliases",
"cssclasses": "multitext",
"tags": "tags",
"date": "date"
}
}