This commit is contained in:
oscar.plaisant@icloud.com
2023-10-23 23:30:51 +02:00
parent f5b9c3d02c
commit 03ecc4a65b
3433 changed files with 1756195 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
{
"settings": {
"flashcardEasyText": "Easy",
"flashcardGoodText": "Good",
"flashcardHardText": "Hard",
"flashcardTags": [
"#flashcards"
],
"convertFoldersToDecks": false,
"cardCommentOnSameLine": false,
"burySiblingCards": false,
"showContextInCards": true,
"flashcardHeightPercentage": 100,
"flashcardWidthPercentage": 100,
"randomizeCardOrder": true,
"convertHighlightsToClozes": true,
"convertBoldTextToClozes": false,
"convertCurlyBracketsToClozes": false,
"singleLineCardSeparator": "::",
"singleLineReversedCardSeparator": ":::",
"multilineCardSeparator": "?",
"multilineReversedCardSeparator": "??",
"editLaterTag": "#edit-later",
"enableNoteReviewPaneOnStartup": true,
"tagsToReview": [
"#review"
],
"noteFoldersToIgnore": [],
"openRandomNote": false,
"autoNextNote": true,
"disableFileMenuReviewOptions": true,
"maxNDaysNotesReviewQueue": 365,
"initiallyExpandAllSubdecksInTree": true,
"baseEase": 250,
"lapsesIntervalChange": 0.5,
"easyBonus": 1.3,
"maximumInterval": 3652,
"maxLinkFactor": 1,
"showDebugMessages": false,
"showFileNameInFileLink": false,
"singlelineCardSeparator": "::",
"singlelineReversedCardSeparator": ":::"
},
"buryDate": "2023-08-03",
"buryList": [],
"historyDeck": ""
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-spaced-repetition",
"name": "Spaced Repetition",
"version": "1.10.1",
"minAppVersion": "0.15.4",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"author": "Stephen Mwangi",
"authorUrl": "https://github.com/st3v3nmw",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/M4M44DEN6"
}

View File

@@ -0,0 +1,157 @@
.sr-flashcard-menu {
display: block;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
.sr-flashcard-menu-item {
box-shadow: none !important;
margin-right: 1rem;
cursor: pointer;
}
.sr-flashcard-menu-item:disabled {
cursor: not-allowed;
}
.sr-flashcard-input-modal {
height: 80%;
}
.sr-flashcard-input-area {
height: 80%;
}
.sr-flashcard-input-area > textarea {
height: 100%;
}
.sr-flashcard-edit-button-bar {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
width: 100%;
margin-top: 1rem;
}
.sr-flashcard-response {
display: inline-grid;
width: 100%;
grid-template-columns: auto auto auto auto;
position: absolute;
bottom: 0;
}
.sr-ignorestats-btn {
/* Bit of a hack, but it works. */
margin: 0px !important;
margin-right: 12px !important;
}
.sr-ignorestats-response {
grid-template-columns: auto auto !important;
}
.sr-centered {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.sr-deck-counts {
color: #ffffff;
margin-left: 4px;
padding: 4px;
}
#sr-show-answer {
height: 48px;
line-height: 48px;
width: 100%;
text-align: center;
position: absolute;
bottom: 0;
cursor: pointer;
background-color: #2196f3;
color: #ffffff;
border-radius: 4px;
user-select: text;
}
#sr-hr-card-divide {
backdrop-filter: invert(40%);
border: none;
height: 2px;
}
#sr-hard-btn,
#sr-good-btn,
#sr-easy-btn {
height: 48px;
margin: auto;
color: #ffffff;
cursor: pointer;
}
#sr-hard-btn {
background-color: #f44336;
}
#sr-good-btn {
background-color: #2196f3;
}
#sr-easy-btn {
background-color: #4caf50;
}
#sr-context {
font-style: italic;
font-weight: bold;
margin-top: 16px;
display: block;
width: 100%;
}
#sr-flashcard-view {
font-size: var(--font-text-size);
overflow-y: auto;
height: 80%;
user-select: text;
}
#sr-chart-period {
appearance: menulist;
border-right: 8px solid transparent;
}
@media only screen and (max-width: 600px) {
.sr-back-btn {
width: initial !important;
}
.sr-modal-content {
width: 98% !important;
}
.sr-modal-content::-webkit-scrollbar,
#sr-flashcard-view::-webkit-scrollbar {
display: none;
}
.sr-flashcard-response,
#sr-show-answer {
width: 93.5% !important;
line-height: 60px;
}
#sr-hard-btn,
#sr-good-btn,
#sr-easy-btn {
width: 100px;
}
}