mirror of
https://gitlab.com/upRootNutrition/obsidian.git
synced 2025-06-15 20:45:11 -05:00
Initial commit
This commit is contained in:
commit
bc15d67574
1475 changed files with 1056167 additions and 0 deletions
78
.obsidian/snippets/dashboard.css
vendored
Normal file
78
.obsidian/snippets/dashboard.css
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
Skip to content
|
||||
Product
|
||||
Solutions
|
||||
Open Source
|
||||
Pricing
|
||||
Search
|
||||
Sign in
|
||||
Sign up
|
||||
TfTHacker
|
||||
/
|
||||
DashboardPlusPlus
|
||||
Public
|
||||
Code
|
||||
Pull requests
|
||||
Discussions
|
||||
Actions
|
||||
Security
|
||||
Insights
|
||||
DashboardPlusPlus/.obsidian/snippets/dashboard.css
|
||||
|
||||
TfT Hacker Updated Dashboard++ for Obsidian 0.16.* releases
|
||||
Latest commit 63014d9 on Sep 26
|
||||
History
|
||||
1 contributor
|
||||
38 lines (32 sloc) 728 Bytes
|
||||
|
||||
/* Updated 2022-02-28 */
|
||||
|
||||
.dashboard {
|
||||
padding-left: 25px !important;
|
||||
padding-right: 25px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
|
||||
.dashboard .markdown-preview-section {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* Title at top of the document */
|
||||
.dashboard .markdown-preview-section .title {
|
||||
top: 60px;
|
||||
position: absolute;
|
||||
font-size: 26pt !important;
|
||||
font-weight: bolder;
|
||||
letter-spacing: 8px;
|
||||
}
|
||||
|
||||
.dashboard h1 {
|
||||
border-bottom-style: solid !important;
|
||||
border-width: 1px !important;
|
||||
padding-bottom: 3px !important;
|
||||
}
|
||||
|
||||
.dashboard div > ul {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
column-gap: 50px;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
|
||||
.dashboard div > ul > li {
|
||||
min-width: 250px;
|
||||
width: 15%;
|
||||
}
|
||||
Footer
|
||||
© 2022 GitHub, Inc.
|
||||
Footer navigation
|
||||
Terms
|
||||
Privacy
|
||||
Security
|
||||
Status
|
||||
Docs
|
||||
Contact GitHub
|
||||
Pricing
|
||||
API
|
||||
Training
|
||||
Blog
|
||||
About
|
26
.obsidian/snippets/img-grid.css
vendored
Normal file
26
.obsidian/snippets/img-grid.css
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
/* Updated for Obsidian 0.9.22 and up */
|
||||
|
||||
.img-grid .markdown-preview-section img:not([width]),
|
||||
.img-grid .markdown-preview-section video {
|
||||
width:100%;
|
||||
}
|
||||
.img-grid .markdown-preview-section > div {
|
||||
display:flex;
|
||||
}
|
||||
.img-grid .markdown-preview-section > div > .internal-embed {
|
||||
flex:1;
|
||||
margin-left:-0.5rem;
|
||||
padding:0 0.5rem 0.5rem 0.5rem;
|
||||
}
|
||||
.img-grid .markdown-preview-section > div > *:not(div) {
|
||||
margin-block-start: 0rem;
|
||||
margin-block-end: 1rem;
|
||||
}
|
||||
.img-grid .markdown-preview-section > div hr {
|
||||
width:100%;
|
||||
}
|
||||
/* These lines make every image the same height */
|
||||
.img-grid .markdown-preview-section > div > .internal-embed img:not(:active) {
|
||||
object-fit:cover;
|
||||
height:100%;
|
||||
}
|
7
.obsidian/snippets/nodecolour.cssi
vendored
Normal file
7
.obsidian/snippets/nodecolour.cssi
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
.theme-dark .graph-view.color-fill-tag {
|
||||
color: #BB895C;
|
||||
}
|
||||
|
||||
.graph-view.color-line {
|
||||
color: #464A59;
|
||||
}
|
139
.obsidian/snippets/slide_fixes.css
vendored
Normal file
139
.obsidian/snippets/slide_fixes.css
vendored
Normal file
|
@ -0,0 +1,139 @@
|
|||
/* .slides {
|
||||
height: 100% !important;
|
||||
width: 100% !important;
|
||||
} */
|
||||
|
||||
|
||||
|
||||
/* font size */
|
||||
.reveal {
|
||||
font-size: 1em; /* for mobile use 1.5em */
|
||||
}
|
||||
|
||||
/* zoom level for (mobile) landscape mode */
|
||||
/* @media screen and (orientation:landscape) {
|
||||
.slides {
|
||||
zoom: 1.1 !important;
|
||||
}
|
||||
} */
|
||||
|
||||
|
||||
/* ---------------------------------------------------- */
|
||||
|
||||
/* adds scrollbar */
|
||||
.slides {
|
||||
overflow-x: hidden !important;
|
||||
overflow-y: auto !important;
|
||||
pointer-events: auto !important;
|
||||
}
|
||||
|
||||
|
||||
/* hide scroll bar */
|
||||
.slide ::-webkit-scrollbar {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------- */
|
||||
|
||||
/* fixes padding for heading after list. e.g. see padding of this
|
||||
|
||||
- item1
|
||||
## heading 2
|
||||
*/
|
||||
.reveal ul {
|
||||
padding-bottom: 1.5%;
|
||||
}
|
||||
|
||||
.reveal ol {
|
||||
padding-bottom: 1.5%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------- */
|
||||
|
||||
/* code styles */
|
||||
.reveal code {
|
||||
max-height: fit-content !important; /* disable this if you want scrollable code blocks */
|
||||
color: #ffad00;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* code blocks */
|
||||
.reveal pre {
|
||||
font-size: 0.8em;
|
||||
min-height: 1em;
|
||||
padding: 0.5em;
|
||||
/* margin-left: -2.5%; */
|
||||
/* width: 105%; */
|
||||
/* max-width: 70%; */
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* move copy button to top right corner */
|
||||
.slide .copy-code-button {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 4px;
|
||||
/* display: none !important; // hides the copy button */
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------- */
|
||||
|
||||
/* blockquotes */
|
||||
.reveal blockquote {
|
||||
border-left: 5px solid var(--background-modifier-border);
|
||||
padding: 0 0 0 15px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.reveal blockquote>p {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------- */
|
||||
|
||||
/* adds border to table */
|
||||
|
||||
.reveal table {
|
||||
/* font-size: 2em; */
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.reveal table>thead>tr>th {
|
||||
font-weight: 500;
|
||||
border: 1px solid hsl(0, 0%, 18%);
|
||||
}
|
||||
|
||||
.reveal table>tbody>tr>td {
|
||||
border: 1px solid hsl(0, 0%, 18%);
|
||||
}
|
||||
|
||||
.reveal table, th, td {
|
||||
border: 1px solid hsl(0, 0%, 18%);
|
||||
}
|
||||
|
||||
.reveal th, td {
|
||||
min-width: 90px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
|
||||
/* ---------------------------------------------------- */
|
||||
|
||||
/* move left and right arrow button */
|
||||
.navigate-right {
|
||||
/* bottom: 1.4em !important; */
|
||||
right: 8em !important;
|
||||
}
|
||||
|
||||
.navigate-left {
|
||||
/* bottom: 1.4em !important; */
|
||||
right: 15em !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue