53 lines
828 B
CSS
53 lines
828 B
CSS
* {
|
|
/* dataview */
|
|
--table-background: inherit;
|
|
/* --table-row-alt-background: #1A1A1A; */
|
|
}
|
|
|
|
|
|
|
|
|
|
/* side panes margins */
|
|
.workspace-leaf-content>.view-content {
|
|
padding: 5pt;
|
|
}
|
|
|
|
/* for every pane content */
|
|
.markdown-source-view.mod-cm6:not(.is-readable-line-width) .cm-contentContainer {
|
|
/* bigge left-margin */
|
|
margin: 0 0 0 calc(52% - var(--max-width)/2) !important; /* note : i hate the person that used !important */
|
|
}
|
|
|
|
|
|
/* bigger collapse indicator on titles and lists */
|
|
.collapse-indicator {
|
|
transform: scale(2);
|
|
}
|
|
|
|
.task-list-item-checkbox {
|
|
/* transform: scale(2) !important; */
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Graph Analysis */
|
|
.GA-View {
|
|
font-size: 1vw;
|
|
}
|
|
table.GA-table {
|
|
--table-font-size: 1vw;
|
|
}
|
|
|
|
|
|
|
|
/* spaced repetition modal */
|
|
.sr-modal-content {
|
|
font-size: calc(max(1.5vw , 3vh));
|
|
}
|
|
|
|
|
|
|