mirror of
https://github.com/danbulant/notes
synced 2026-05-21 13:28:49 +00:00
initial commit
This commit is contained in:
commit
042d4a7a9e
17 changed files with 20118 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.obsidian/workspace
|
||||
5
.obsidian/app.json
vendored
Normal file
5
.obsidian/app.json
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"showFrontmatter": false,
|
||||
"foldHeading": true,
|
||||
"showUnsupportedFiles": true
|
||||
}
|
||||
5
.obsidian/appearance.json
vendored
Normal file
5
.obsidian/appearance.json
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"baseFontSize": 16,
|
||||
"theme": "obsidian",
|
||||
"cssTheme": "Atom"
|
||||
}
|
||||
3
.obsidian/community-plugins.json
vendored
Normal file
3
.obsidian/community-plugins.json
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[
|
||||
"obsidian-charts"
|
||||
]
|
||||
16
.obsidian/core-plugins.json
vendored
Normal file
16
.obsidian/core-plugins.json
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
[
|
||||
"file-explorer",
|
||||
"global-search",
|
||||
"switcher",
|
||||
"graph",
|
||||
"backlink",
|
||||
"outgoing-link",
|
||||
"tag-pane",
|
||||
"page-preview",
|
||||
"note-composer",
|
||||
"command-palette",
|
||||
"markdown-importer",
|
||||
"word-count",
|
||||
"open-with-default-app",
|
||||
"file-recovery"
|
||||
]
|
||||
22
.obsidian/graph.json
vendored
Normal file
22
.obsidian/graph.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"collapse-filter": true,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showAttachments": false,
|
||||
"hideUnresolved": false,
|
||||
"showOrphans": true,
|
||||
"collapse-color-groups": true,
|
||||
"colorGroups": [],
|
||||
"collapse-display": true,
|
||||
"showArrow": false,
|
||||
"textFadeMultiplier": 0,
|
||||
"nodeSizeMultiplier": 1,
|
||||
"lineSizeMultiplier": 1,
|
||||
"collapse-forces": true,
|
||||
"centerStrength": 0.518713248970312,
|
||||
"repelStrength": 10,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 250,
|
||||
"scale": 1,
|
||||
"close": false
|
||||
}
|
||||
1
.obsidian/hotkeys.json
vendored
Normal file
1
.obsidian/hotkeys.json
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
18679
.obsidian/plugins/obsidian-charts/main.js
vendored
Normal file
18679
.obsidian/plugins/obsidian-charts/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-charts/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-charts/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-charts",
|
||||
"name": "Obsidian Charts",
|
||||
"version": "2.5.2",
|
||||
"minAppVersion": "0.12.7",
|
||||
"description": "This Plugin lets you create Charts within Obsidian",
|
||||
"author": "phibr0",
|
||||
"authorUrl": "https://github.com/phibr0",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
858
.obsidian/plugins/obsidian-charts/styles.css
vendored
Normal file
858
.obsidian/plugins/obsidian-charts/styles.css
vendored
Normal file
|
|
@ -0,0 +1,858 @@
|
|||
.theme-light text.ct-label {
|
||||
fill: rgba(0, 0, 0, .7);
|
||||
color: rgba(0, 0, 0, .7);
|
||||
font-size: .75rem;
|
||||
line-height: 1
|
||||
}
|
||||
|
||||
.theme-dark text.ct-label {
|
||||
fill: rgba(255, 255, 255, .7);
|
||||
color: rgba(255, 255, 255, .7);
|
||||
font-size: .75rem;
|
||||
line-height: 1
|
||||
}
|
||||
|
||||
.theme-light .ct-grid {
|
||||
stroke: rgba(0, 0, 0, .4);
|
||||
stroke-width: 1px;
|
||||
stroke-dasharray: 2px
|
||||
}
|
||||
|
||||
.theme-dark .ct-grid {
|
||||
stroke: rgba(255, 255, 255, .4);
|
||||
stroke-width: 1px;
|
||||
stroke-dasharray: 2px
|
||||
}
|
||||
|
||||
.ct-series-a .ct-bar,
|
||||
.ct-series-a .ct-line,
|
||||
.ct-series-a .ct-point,
|
||||
.ct-series-a .ct-slice-donut {
|
||||
stroke: #d70206
|
||||
}
|
||||
|
||||
.ct-series-a .ct-area,
|
||||
.ct-series-a .ct-slice-donut-solid,
|
||||
.ct-series-a .ct-slice-pie {
|
||||
fill: #d70206
|
||||
}
|
||||
|
||||
.ct-series-b .ct-bar,
|
||||
.ct-series-b .ct-line,
|
||||
.ct-series-b .ct-point,
|
||||
.ct-series-b .ct-slice-donut {
|
||||
stroke: #f05b4f
|
||||
}
|
||||
|
||||
.ct-series-b .ct-area,
|
||||
.ct-series-b .ct-slice-donut-solid,
|
||||
.ct-series-b .ct-slice-pie {
|
||||
fill: #f05b4f
|
||||
}
|
||||
|
||||
.ct-series-c .ct-bar,
|
||||
.ct-series-c .ct-line,
|
||||
.ct-series-c .ct-point,
|
||||
.ct-series-c .ct-slice-donut {
|
||||
stroke: #f4c63d
|
||||
}
|
||||
|
||||
.ct-series-c .ct-area,
|
||||
.ct-series-c .ct-slice-donut-solid,
|
||||
.ct-series-c .ct-slice-pie {
|
||||
fill: #f4c63d
|
||||
}
|
||||
|
||||
.ct-series-d .ct-bar,
|
||||
.ct-series-d .ct-line,
|
||||
.ct-series-d .ct-point,
|
||||
.ct-series-d .ct-slice-donut {
|
||||
stroke: #d17905
|
||||
}
|
||||
|
||||
.ct-series-d .ct-area,
|
||||
.ct-series-d .ct-slice-donut-solid,
|
||||
.ct-series-d .ct-slice-pie {
|
||||
fill: #d17905
|
||||
}
|
||||
|
||||
.ct-series-e .ct-bar,
|
||||
.ct-series-e .ct-line,
|
||||
.ct-series-e .ct-point,
|
||||
.ct-series-e .ct-slice-donut {
|
||||
stroke: #453d3f
|
||||
}
|
||||
|
||||
.ct-series-e .ct-area,
|
||||
.ct-series-e .ct-slice-donut-solid,
|
||||
.ct-series-e .ct-slice-pie {
|
||||
fill: #453d3f
|
||||
}
|
||||
|
||||
.ct-series-f .ct-bar,
|
||||
.ct-series-f .ct-line,
|
||||
.ct-series-f .ct-point,
|
||||
.ct-series-f .ct-slice-donut {
|
||||
stroke: #59922b
|
||||
}
|
||||
|
||||
.ct-series-f .ct-area,
|
||||
.ct-series-f .ct-slice-donut-solid,
|
||||
.ct-series-f .ct-slice-pie {
|
||||
fill: #59922b
|
||||
}
|
||||
|
||||
.ct-series-g .ct-bar,
|
||||
.ct-series-g .ct-line,
|
||||
.ct-series-g .ct-point,
|
||||
.ct-series-g .ct-slice-donut {
|
||||
stroke: #0544d3
|
||||
}
|
||||
|
||||
.ct-series-g .ct-area,
|
||||
.ct-series-g .ct-slice-donut-solid,
|
||||
.ct-series-g .ct-slice-pie {
|
||||
fill: #0544d3
|
||||
}
|
||||
|
||||
.ct-series-h .ct-bar,
|
||||
.ct-series-h .ct-line,
|
||||
.ct-series-h .ct-point,
|
||||
.ct-series-h .ct-slice-donut {
|
||||
stroke: #6b0392
|
||||
}
|
||||
|
||||
.ct-series-h .ct-area,
|
||||
.ct-series-h .ct-slice-donut-solid,
|
||||
.ct-series-h .ct-slice-pie {
|
||||
fill: #6b0392
|
||||
}
|
||||
|
||||
.ct-series-i .ct-bar,
|
||||
.ct-series-i .ct-line,
|
||||
.ct-series-i .ct-point,
|
||||
.ct-series-i .ct-slice-donut {
|
||||
stroke: #f05b4f
|
||||
}
|
||||
|
||||
.ct-series-i .ct-area,
|
||||
.ct-series-i .ct-slice-donut-solid,
|
||||
.ct-series-i .ct-slice-pie {
|
||||
fill: #f05b4f
|
||||
}
|
||||
|
||||
.ct-series-j .ct-bar,
|
||||
.ct-series-j .ct-line,
|
||||
.ct-series-j .ct-point,
|
||||
.ct-series-j .ct-slice-donut {
|
||||
stroke: #dda458
|
||||
}
|
||||
|
||||
.ct-series-j .ct-area,
|
||||
.ct-series-j .ct-slice-donut-solid,
|
||||
.ct-series-j .ct-slice-pie {
|
||||
fill: #dda458
|
||||
}
|
||||
|
||||
.ct-series-k .ct-bar,
|
||||
.ct-series-k .ct-line,
|
||||
.ct-series-k .ct-point,
|
||||
.ct-series-k .ct-slice-donut {
|
||||
stroke: #eacf7d
|
||||
}
|
||||
|
||||
.ct-series-k .ct-area,
|
||||
.ct-series-k .ct-slice-donut-solid,
|
||||
.ct-series-k .ct-slice-pie {
|
||||
fill: #eacf7d
|
||||
}
|
||||
|
||||
.ct-series-l .ct-bar,
|
||||
.ct-series-l .ct-line,
|
||||
.ct-series-l .ct-point,
|
||||
.ct-series-l .ct-slice-donut {
|
||||
stroke: #86797d
|
||||
}
|
||||
|
||||
.ct-series-l .ct-area,
|
||||
.ct-series-l .ct-slice-donut-solid,
|
||||
.ct-series-l .ct-slice-pie {
|
||||
fill: #86797d
|
||||
}
|
||||
|
||||
.ct-series-m .ct-bar,
|
||||
.ct-series-m .ct-line,
|
||||
.ct-series-m .ct-point,
|
||||
.ct-series-m .ct-slice-donut {
|
||||
stroke: #b2c326
|
||||
}
|
||||
|
||||
.ct-series-m .ct-area,
|
||||
.ct-series-m .ct-slice-donut-solid,
|
||||
.ct-series-m .ct-slice-pie {
|
||||
fill: #b2c326
|
||||
}
|
||||
|
||||
.ct-series-n .ct-bar,
|
||||
.ct-series-n .ct-line,
|
||||
.ct-series-n .ct-point,
|
||||
.ct-series-n .ct-slice-donut {
|
||||
stroke: #6188e2
|
||||
}
|
||||
|
||||
.ct-series-n .ct-area,
|
||||
.ct-series-n .ct-slice-donut-solid,
|
||||
.ct-series-n .ct-slice-pie {
|
||||
fill: #6188e2
|
||||
}
|
||||
|
||||
.ct-series-o .ct-bar,
|
||||
.ct-series-o .ct-line,
|
||||
.ct-series-o .ct-point,
|
||||
.ct-series-o .ct-slice-donut {
|
||||
stroke: #a748ca
|
||||
}
|
||||
|
||||
.ct-series-o .ct-area,
|
||||
.ct-series-o .ct-slice-donut-solid,
|
||||
.ct-series-o .ct-slice-pie {
|
||||
fill: #a748ca
|
||||
}
|
||||
|
||||
.ct-double-octave:after,
|
||||
.ct-major-eleventh:after,
|
||||
.ct-major-second:after,
|
||||
.ct-major-seventh:after,
|
||||
.ct-major-sixth:after,
|
||||
.ct-major-tenth:after,
|
||||
.ct-major-third:after,
|
||||
.ct-major-twelfth:after,
|
||||
.ct-minor-second:after,
|
||||
.ct-minor-seventh:after,
|
||||
.ct-minor-sixth:after,
|
||||
.ct-minor-third:after,
|
||||
.ct-octave:after,
|
||||
.ct-perfect-fifth:after,
|
||||
.ct-perfect-fourth:after,
|
||||
.ct-square:after {
|
||||
content: "";
|
||||
clear: both
|
||||
}
|
||||
|
||||
.ct-grid-background,
|
||||
.ct-line {
|
||||
fill: none
|
||||
}
|
||||
|
||||
.ct-chart-bar .ct-label,
|
||||
.ct-chart-line .ct-label {
|
||||
display: block;
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex
|
||||
}
|
||||
|
||||
.ct-chart-donut .ct-label,
|
||||
.ct-chart-pie .ct-label {
|
||||
dominant-baseline: central
|
||||
}
|
||||
|
||||
.ct-label.ct-horizontal.ct-start {
|
||||
-webkit-box-align: flex-end;
|
||||
-webkit-align-items: flex-end;
|
||||
-ms-flex-align: flex-end;
|
||||
align-items: flex-end;
|
||||
-webkit-box-pack: flex-start;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-label.ct-horizontal.ct-end {
|
||||
-webkit-box-align: flex-start;
|
||||
-webkit-align-items: flex-start;
|
||||
-ms-flex-align: flex-start;
|
||||
align-items: flex-start;
|
||||
-webkit-box-pack: flex-start;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-label.ct-vertical.ct-start {
|
||||
-webkit-box-align: flex-end;
|
||||
-webkit-align-items: flex-end;
|
||||
-ms-flex-align: flex-end;
|
||||
align-items: flex-end;
|
||||
-webkit-box-pack: flex-end;
|
||||
-webkit-justify-content: flex-end;
|
||||
-ms-flex-pack: flex-end;
|
||||
justify-content: flex-end;
|
||||
text-align: right;
|
||||
text-anchor: end
|
||||
}
|
||||
|
||||
.ct-label.ct-vertical.ct-end {
|
||||
-webkit-box-align: flex-end;
|
||||
-webkit-align-items: flex-end;
|
||||
-ms-flex-align: flex-end;
|
||||
align-items: flex-end;
|
||||
-webkit-box-pack: flex-start;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-chart-bar .ct-label.ct-horizontal.ct-start {
|
||||
-webkit-box-align: flex-end;
|
||||
-webkit-align-items: flex-end;
|
||||
-ms-flex-align: flex-end;
|
||||
align-items: flex-end;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
|
||||
-webkit-box-align: flex-start;
|
||||
-webkit-align-items: flex-start;
|
||||
-ms-flex-align: flex-start;
|
||||
align-items: flex-start;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
|
||||
-webkit-box-align: flex-end;
|
||||
-webkit-align-items: flex-end;
|
||||
-ms-flex-align: flex-end;
|
||||
align-items: flex-end;
|
||||
-webkit-box-pack: flex-start;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
|
||||
-webkit-box-align: flex-start;
|
||||
-webkit-align-items: flex-start;
|
||||
-ms-flex-align: flex-start;
|
||||
align-items: flex-start;
|
||||
-webkit-box-pack: flex-start;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
text-anchor: start
|
||||
}
|
||||
|
||||
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: flex-end;
|
||||
-webkit-justify-content: flex-end;
|
||||
-ms-flex-pack: flex-end;
|
||||
justify-content: flex-end;
|
||||
text-align: right;
|
||||
text-anchor: end
|
||||
}
|
||||
|
||||
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: flex-start;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
text-anchor: end
|
||||
}
|
||||
|
||||
.ct-point {
|
||||
stroke-width: 10px;
|
||||
stroke-linecap: round
|
||||
}
|
||||
|
||||
.ct-line {
|
||||
stroke-width: 4px
|
||||
}
|
||||
|
||||
.ct-area {
|
||||
stroke: none;
|
||||
fill-opacity: .1
|
||||
}
|
||||
|
||||
.ct-bar {
|
||||
fill: none;
|
||||
stroke-width: 10px
|
||||
}
|
||||
|
||||
.ct-slice-donut {
|
||||
fill: none;
|
||||
stroke-width: 60px
|
||||
}
|
||||
|
||||
.ct-square {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-square:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 100%
|
||||
}
|
||||
|
||||
.ct-square:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-square>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-minor-second {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-minor-second:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 93.75%
|
||||
}
|
||||
|
||||
.ct-minor-second:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-minor-second>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-second {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-second:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 88.8888888889%
|
||||
}
|
||||
|
||||
.ct-major-second:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-second>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-minor-third {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-minor-third:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 83.3333333333%
|
||||
}
|
||||
|
||||
.ct-minor-third:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-minor-third>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-third {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-third:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 80%
|
||||
}
|
||||
|
||||
.ct-major-third:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-third>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-perfect-fourth {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-perfect-fourth:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 75%
|
||||
}
|
||||
|
||||
.ct-perfect-fourth:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-perfect-fourth>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-perfect-fifth {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-perfect-fifth:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 66.6666666667%
|
||||
}
|
||||
|
||||
.ct-perfect-fifth:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-perfect-fifth>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-minor-sixth {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-minor-sixth:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 62.5%
|
||||
}
|
||||
|
||||
.ct-minor-sixth:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-minor-sixth>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-golden-section {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-golden-section:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 61.804697157%
|
||||
}
|
||||
|
||||
.ct-golden-section:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both
|
||||
}
|
||||
|
||||
.ct-golden-section>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-sixth {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-sixth:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 60%
|
||||
}
|
||||
|
||||
.ct-major-sixth:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-sixth>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-minor-seventh {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-minor-seventh:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 56.25%
|
||||
}
|
||||
|
||||
.ct-minor-seventh:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-minor-seventh>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-seventh {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-seventh:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 53.3333333333%
|
||||
}
|
||||
|
||||
.ct-major-seventh:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-seventh>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-octave {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-octave:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 50%
|
||||
}
|
||||
|
||||
.ct-octave:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-octave>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-tenth {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-tenth:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 40%
|
||||
}
|
||||
|
||||
.ct-major-tenth:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-tenth>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-eleventh {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-eleventh:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 37.5%
|
||||
}
|
||||
|
||||
.ct-major-eleventh:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-eleventh>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-major-twelfth {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-major-twelfth:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 33.3333333333%
|
||||
}
|
||||
|
||||
.ct-major-twelfth:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-major-twelfth>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
.ct-double-octave {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.ct-double-octave:before {
|
||||
display: block;
|
||||
float: left;
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding-bottom: 25%
|
||||
}
|
||||
|
||||
.ct-double-octave:after {
|
||||
display: table
|
||||
}
|
||||
|
||||
.ct-double-octave>svg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
472
.obsidian/themes/Atom.css
vendored
Normal file
472
.obsidian/themes/Atom.css
vendored
Normal file
|
|
@ -0,0 +1,472 @@
|
|||
.theme-dark {
|
||||
--background-primary: #272b34;
|
||||
--background-primary-alt: #20242b;
|
||||
--background-secondary: #20242b;
|
||||
--background-secondary-alt: #1a1e24;
|
||||
--background-accent: #000;
|
||||
--background-modifier-border: #424958;
|
||||
--background-modifier-form-field: rgba(0, 0, 0, 0.3);
|
||||
--background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.22);
|
||||
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
|
||||
--background-modifier-success: #539126;
|
||||
--background-modifier-error: #3d0000;
|
||||
--background-modifier-error-rgb: 61, 0, 0;
|
||||
--background-modifier-error-hover: #470000;
|
||||
--background-modifier-cover: rgba(0, 0, 0, 0.6);
|
||||
--text-accent: #61afef;
|
||||
--text-accent-hover: #69bafd;
|
||||
--text-normal: #dcddde;
|
||||
--text-muted: #888;
|
||||
--text-faint: rgb(81, 86, 99);
|
||||
--text-error: #e16d76;
|
||||
--text-error-hover: #c9626a;
|
||||
--text-highlight-bg: rgba(255, 255, 0, 0.4);
|
||||
--text-selection: rgba(0, 122, 255, 0.2);
|
||||
--text-on-accent: #dcddde;
|
||||
--interactive-normal: #20242b;
|
||||
--interactive-hover: #353b47;
|
||||
--interactive-accent: #4c78cc;
|
||||
--interactive-accent-rgb: 76, 120, 204;
|
||||
--interactive-accent-hover: #5082df;
|
||||
--scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.2);
|
||||
--scrollbar-bg: rgba(255, 255, 255, 0.05);
|
||||
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
|
||||
--panel-border-color: #18191e;
|
||||
--gray-1: #5C6370;
|
||||
--gray-2: #abb2bf;
|
||||
--red: #e06c75;
|
||||
--orange: #d19a66;
|
||||
--green: #98c379;
|
||||
--aqua: #56b6c2;
|
||||
--purple: #c678dd;
|
||||
--blue: #61afef;
|
||||
--yellow: #e5c07b;
|
||||
}
|
||||
|
||||
.theme-light {
|
||||
--background-primary: #fafafa;
|
||||
--background-primary-alt: #eaeaeb;
|
||||
--background-secondary: #eaeaeb;
|
||||
--background-secondary-alt: #dbdbdc;
|
||||
--background-accent: #fff;
|
||||
--background-modifier-border: #dbdbdc;
|
||||
--background-modifier-form-field: #fff;
|
||||
--background-modifier-form-field-highlighted: #fff;
|
||||
--background-modifier-box-shadow: rgba(0, 0, 0, 0.1);
|
||||
--background-modifier-success: #A4E7C3;
|
||||
--background-modifier-error: #e68787;
|
||||
--background-modifier-error-rgb: 230, 135, 135;
|
||||
--background-modifier-error-hover: #FF9494;
|
||||
--background-modifier-cover: rgba(0, 0, 0, 0.8);
|
||||
--text-accent: #1592ff;
|
||||
--text-accent-hover: #2d9dff;
|
||||
--text-normal: #383a42;
|
||||
--text-muted: #8e8e90;
|
||||
--text-faint: #999999;
|
||||
--text-error: #e75545;
|
||||
--text-error-hover: #f86959;
|
||||
--text-highlight-bg: rgba(255, 255, 0, 0.4);
|
||||
--text-selection: rgba(0, 122, 255, 0.15);
|
||||
--text-on-accent: #f2f2f2;
|
||||
--interactive-normal: #eaeaeb;
|
||||
--interactive-hover: #dbdbdc;
|
||||
--interactive-accent-rgb: 21, 146, 255;
|
||||
--interactive-accent: #5871ef;
|
||||
--interactive-accent-hover: #445bd1;
|
||||
--scrollbar-active-thumb-bg: rgba(0, 0, 0, 0.2);
|
||||
--scrollbar-bg: rgba(0, 0, 0, 0.05);
|
||||
--scrollbar-thumb-bg: rgba(0, 0, 0, 0.1);
|
||||
--panel-border-color: #dbdbdc;
|
||||
--gray-1: #383a42;
|
||||
--gray-2: #383a42;
|
||||
--red: #e75545;
|
||||
--green: #4ea24c;
|
||||
--blue: #3d74f6;
|
||||
--purple: #a625a4;
|
||||
--aqua: #0084bc;
|
||||
--yellow: #e35649;
|
||||
--orange: #986800;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: auto;
|
||||
}
|
||||
|
||||
.titlebar {
|
||||
background-color: var(--background-secondary-alt);
|
||||
}
|
||||
|
||||
.titlebar-inner {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.tooltip:not(.mod-right):not(.mod-left):not(.mod-top) .tooltip-arrow {
|
||||
border-bottom-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
.mod-right .tooltip-arrow {
|
||||
border-right-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
.mod-left .tooltip-arrow {
|
||||
border-left-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
.mod-top .tooltip-arrow {
|
||||
border-top-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
cursor: pointer;
|
||||
background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234c78cc%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
|
||||
}
|
||||
|
||||
.dropdown:hover {
|
||||
background-color: var(--background-modifier-form-field);
|
||||
}
|
||||
|
||||
.search-result-file-title {
|
||||
color: var(--blue);
|
||||
}
|
||||
|
||||
li {
|
||||
padding-top: 0.5px;
|
||||
padding-bottom: 0.5px;
|
||||
}
|
||||
|
||||
a.tag, a.tag:hover {
|
||||
color: var(--yellow);
|
||||
background-color: var(--background-primary-alt);
|
||||
padding: 2px 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox {
|
||||
-webkit-appearance: none;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid var(--text-muted);
|
||||
border-radius: 2px;
|
||||
position: relative;
|
||||
width: 1.3em;
|
||||
height: 1.3em;
|
||||
margin: 0;
|
||||
filter: none;
|
||||
outline: none;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 2px;
|
||||
cursor: pointer;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox:checked {
|
||||
border: none;
|
||||
background-color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox:checked::before {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
left: 2px;
|
||||
top: 2px;
|
||||
right: 2px;
|
||||
bottom: 2px;
|
||||
-webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 14 14\'%3E%3Cpolygon points=\'5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039\'%3E%3C/polygon%3E%3C/svg%3E');
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item.is-checked a {
|
||||
filter: saturate(0.8) brightness(0.7);
|
||||
}
|
||||
|
||||
.cm-formatting-task {
|
||||
font-family: var(--font-monospace);
|
||||
}
|
||||
|
||||
.nav-file, .nav-folder {
|
||||
padding: 1px 2px;
|
||||
}
|
||||
|
||||
.nav-file-title, .nav-folder-title {
|
||||
width: 100%;
|
||||
cursor: default;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
flex-direction: row;
|
||||
--text-normal: var(--text-muted);
|
||||
}
|
||||
|
||||
body:not(.is-grabbing) .nav-file .nav-file-title:hover:not(.is-active), body:not(.is-grabbing) .nav-folder .nav-folder-title:hover:not(.is-active) {
|
||||
--background-secondary-alt: transparent;
|
||||
}
|
||||
|
||||
.nav-file .is-active {
|
||||
--background-secondary-alt: var(--interactive-accent);
|
||||
--text-normal: #ffffff;
|
||||
}
|
||||
|
||||
.nav-file-title-content, .nav-folder-title-content {
|
||||
text-indent: 0;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.markdown-preview-view.is-readable-line-width .markdown-preview-section, .markdown-source-view.is-readable-line-width .CodeMirror {
|
||||
max-width: 900px !important;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 20px 0;
|
||||
border-radius: 4px !important;
|
||||
}
|
||||
|
||||
body {
|
||||
--font-monospace: 'Fira Code', 'Source Code Pro', monospace;
|
||||
}
|
||||
|
||||
mjx-container[jax='CHTML'] {
|
||||
text-align: left;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.math-block {
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
.cm-s-obsidian pre.HyperMD-codeblock, .cm-s-obsidian span.cm-inline-code, .cm-s-obsidian span.cm-math:not(.cm-formatting-math-begin):not(.cm-formatting-math-end), .markdown-preview-view code {
|
||||
/* fix `` tag color */
|
||||
color: #98c379;
|
||||
}
|
||||
|
||||
.cm-s-obsidian span.cm-inline-code, .cm-s-obsidian span.cm-math, .cm-s-obsidian span.hmd-fold-math-placeholder {
|
||||
/* fix tag size */
|
||||
font-weight: 100;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.markdown-preview-view code {
|
||||
vertical-align: text-top;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.markdown-preview-section:not(:first-child) h1, .markdown-preview-section:not(:first-child) h2, .markdown-preview-section:not(:first-child) h3, .markdown-preview-section:not(:first-child) h4, .markdown-preview-section:not(:first-child) h5, .markdown-preview-section:not(:first-child) h6 {
|
||||
margin-top: 40px !important;
|
||||
}
|
||||
|
||||
.markdown-preview-section h1, .markdown-preview-section h2, .markdown-preview-section h3, .markdown-preview-section h4, .markdown-preview-section h5, .markdown-preview-section h6 {
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, strong, b, .view-header-title {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.workspace>.workspace-split>.workspace-leaf:first-of-type:last-of-type .view-header {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.status-bar, .side-dock.mod-right, .side-dock.mod-left {
|
||||
border-color: var(--panel-border-color);
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
.status-bar {
|
||||
--bar-vertical-padding: 4px;
|
||||
--bar-height: calc(22px + (var(--bar-vertical-padding) * 2));
|
||||
line-height: 20px;
|
||||
padding: 0 20px;
|
||||
height: var(--bar-height);
|
||||
max-height: var(--bar-height);
|
||||
min-height: var(--bar-height);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.status-bar-item {
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.status-bar-item>* {
|
||||
padding-top: var(--bar-vertical-padding) !important;
|
||||
padding-bottom: var(--bar-vertical-padding) !important;
|
||||
}
|
||||
|
||||
.side-dock-plugin-panel-inner {
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
a, .markdown-preview-view .internal-link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover, .markdown-preview-view .internal-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.theme-dark :not(pre)>code[class*='language-'], .theme-dark pre[class*='language-'] {
|
||||
background: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.theme-light :not(pre)>code[class*='language-'], .theme-light pre[class*='language-'] {
|
||||
background: var(--background-primary);
|
||||
box-shadow: inset 0 0 0 1px var(--background-primary-alt);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.markdown-embed:not(.hover-popover .markdown-embed), .file-embed {
|
||||
margin: 0;
|
||||
border-radius: 4px;
|
||||
margin: 0 !important;
|
||||
margin-inline-start: 30px !important;
|
||||
margin-inline-end: 30px !important;
|
||||
}
|
||||
|
||||
.markdown-embed {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-left-width: 5px;
|
||||
}
|
||||
|
||||
.markdown-embed .markdown-preview-view {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.markdown-embed-link, .file-embed-link {
|
||||
left: 8px;
|
||||
right: unset;
|
||||
}
|
||||
|
||||
.theme-light .token.operator, .theme-light .token.entity, .theme-light .token.url, .theme-light .language-css .token.string, .theme-light .style .token.string {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* Source: https://github.com/AGMStudio/prism-theme-one-dark */
|
||||
|
||||
code[class*='language-'], pre[class*='language-'] {
|
||||
text-align: left !important;
|
||||
white-space: pre !important;
|
||||
word-spacing: normal !important;
|
||||
word-break: normal !important;
|
||||
word-wrap: normal !important;
|
||||
line-height: 1.5 !important;
|
||||
-moz-tab-size: 4 !important;
|
||||
-o-tab-size: 4 !important;
|
||||
tab-size: 4 !important;
|
||||
-webkit-hyphens: none !important;
|
||||
-moz-hyphens: none !important;
|
||||
-ms-hyphens: none !important;
|
||||
hyphens: none !important;
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
|
||||
pre[class*='language-'] {
|
||||
padding: 1em !important;
|
||||
margin: .5em 0 !important;
|
||||
overflow: auto !important;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
|
||||
:not(pre)>code[class*='language-'] {
|
||||
padding: .1em !important;
|
||||
border-radius: .3em !important;
|
||||
white-space: normal !important;
|
||||
}
|
||||
|
||||
.token.comment, .token.prolog, .token.doctype, .token.cdata {
|
||||
color: var(--gray-1) !important;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: var(--gray-2) !important;
|
||||
}
|
||||
|
||||
.token.selector, .token.tag {
|
||||
color: var(--red) !important;
|
||||
}
|
||||
|
||||
.token.property, .token.boolean, .token.number, .token.constant, .token.symbol, .token.attr-name, .token.deleted {
|
||||
color: var(--orange) !important;
|
||||
}
|
||||
|
||||
.token.string, .token.char, .token.attr-value, .token.builtin, .token.inserted {
|
||||
color: var(--green) !important;
|
||||
}
|
||||
|
||||
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string {
|
||||
color: var(--aqua) !important;
|
||||
}
|
||||
|
||||
.token.atrule, .token.keyword {
|
||||
color: var(--purple) !important;
|
||||
}
|
||||
|
||||
.token.function, .token.macro.property {
|
||||
color: var(--blue) !important;
|
||||
}
|
||||
|
||||
.token.class-name {
|
||||
color: var(--yellow) !important;
|
||||
}
|
||||
|
||||
.token.regex, .token.important, .token.variable {
|
||||
color: var(--purple) !important;
|
||||
}
|
||||
|
||||
.token.important, .token.bold {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
.token.italic {
|
||||
font-style: italic !important;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help !important;
|
||||
}
|
||||
|
||||
pre.line-numbers {
|
||||
position: relative !important;
|
||||
padding-left: 3.8em !important;
|
||||
counter-reset: linenumber !important;
|
||||
}
|
||||
|
||||
pre.line-numbers>code {
|
||||
position: relative !important;
|
||||
}
|
||||
|
||||
.line-numbers .line-numbers-rows {
|
||||
position: absolute !important;
|
||||
pointer-events: none !important;
|
||||
top: 0 !important;
|
||||
font-size: 100% !important;
|
||||
left: -3.8em !important;
|
||||
width: 3em !important;
|
||||
/* works for line-numbers below 1000 lines */
|
||||
letter-spacing: -1px !important;
|
||||
border-right: 0 !important;
|
||||
-webkit-user-select: none !important;
|
||||
-moz-user-select: none !important;
|
||||
-ms-user-select: none !important;
|
||||
user-select: none !important;
|
||||
}
|
||||
|
||||
.line-numbers-rows>span {
|
||||
pointer-events: none !important;
|
||||
display: block !important;
|
||||
counter-increment: linenumber !important;
|
||||
}
|
||||
|
||||
.line-numbers-rows>span:before {
|
||||
content: counter(linenumber) !important;
|
||||
color: var(--syntax-gray-1) !important;
|
||||
display: block !important;
|
||||
padding-right: 0.8em !important;
|
||||
text-align: right !important;
|
||||
}
|
||||
3
chemie/ucitel.md
Normal file
3
chemie/ucitel.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Trnka
|
||||
|
||||
Kabinet 309
|
||||
11
fyzika/priklad.md
Normal file
11
fyzika/priklad.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
$$
|
||||
\beta\frac{1}{\alpha}^3+\infty_5
|
||||
$$
|
||||
|
||||
```chart
|
||||
type: line
|
||||
labels: [Monday, Tuesday, Wednesday]
|
||||
series:
|
||||
- data: [1,3,4]
|
||||
```
|
||||
|
||||
3
fyzika/ucitel.md
Normal file
3
fyzika/ucitel.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Rybáková
|
||||
|
||||
kabinet 309
|
||||
19
mat/Zlomky.md
Normal file
19
mat/Zlomky.md
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
$$
|
||||
\frac{x}{3} - 20 = \frac{x}{7}
|
||||
$$
|
||||
$$
|
||||
7x - 420 = 3x
|
||||
$$
|
||||
$$
|
||||
4x - 420 = 0
|
||||
$$
|
||||
$$
|
||||
4x = 420
|
||||
$$
|
||||
$$
|
||||
x = 105
|
||||
$$
|
||||
|
||||
$$
|
||||
\frac{x}{5} + \frac{x}{3} + \frac{2x}{9} + \frac{x}{6} = \frac{18x}{90} + \frac{30x}{90} + \frac{20x}{90} + \frac{15x}{90} = \frac{83x}{90}
|
||||
$$
|
||||
1
mat/ucitel.md
Normal file
1
mat/ucitel.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Tkáč
|
||||
9
pdv/30let linuxu.md
Normal file
9
pdv/30let linuxu.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# 30 let Linuxu
|
||||
Necelé 2 týdny zpátky (v době psaní) bylo výročí 30 let od oznámení linuxu. Linus Torvalds 25. srpna poslal email kde psal o tom, jak pracuje na operačním systému pro procesory řady 386/486, a taky napsal že to nebude nic velkého a profesionálního jako GNU (ironicky). Napsal že Linux není portovatelný, protože používá hodně funkcí specifických pro 386 procesory. Nedávno byl naportován na VRChat shader (pomocí emulace RISC-V procesoru, který má úplně jinou architekturu než 386).
|
||||
> It will never be the professional OS that Hurd will be.
|
||||
> — <cite>Linus Torvalds</cite>
|
||||
*\[zkráceno]*
|
||||
## První verze
|
||||
Nejstarší verzi kterou jsem našel bylo 0.01 (ono podle čísla stejně starší verze nebyla nahraná), která sama o sobě stejně nefungovala - byli to jen zdrojové kódy pro ty, co se o Linux zajímali v době oznámení Linusem. První verze která byla spustitelná byla 0.02, vydaná 5. října 1991, na které šel spustit bash (terminál) 1.08 a GCC (na kompilaci) 1.40, společně se základníma utilitama na správu souborů (cp, sed, cat a pod.). V té době ještě stále vyžadoval minix ke kompilaci, jelikož používal knihovny od minixu.
|
||||
## Linux není samostatný operační systém
|
||||
Jeden z emailů taky zmiňoval, že Linux není samostatný operační systém, a že to je pro lidi co se chtějí naučit více o 386 procesorech a o tom, jak může OS vypadat. Také se tam psalo o tom, že GNU Hurd, operační systém od GNU, by mohl vyjít do pár let (nebo měsíců). GNU Hurd již vyšel, avšak je daleko za Linuxem, jelikož se většina GNU vývojářů přesunula na Linux od GNU Hurd.
|
||||
Loading…
Reference in a new issue