Mise à jour du 25 octobre 2025 à 15:00
This commit is contained in:
commit
9505998dae
147 changed files with 83565 additions and 0 deletions
195
.obsidian/plugins/obsidian-prozen/main.js
vendored
Normal file
195
.obsidian/plugins/obsidian-prozen/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-prozen/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-prozen/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-prozen",
|
||||
"name": "ProZen",
|
||||
"version": "0.3",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Enter Zen mode to focus on writing. The plugin expands current tab to full screen removing everything but content.",
|
||||
"author": "Moskvitin",
|
||||
"authorUrl": "https://moskvit.in",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
47
.obsidian/plugins/obsidian-prozen/styles.css
vendored
Normal file
47
.obsidian/plugins/obsidian-prozen/styles.css
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
:root {
|
||||
--vignette-opacity: 1;
|
||||
--fadeIn-duration: "2s";
|
||||
--vignette-scale-linear: 20%;
|
||||
--vignette-scale-radial: 50%;
|
||||
}
|
||||
|
||||
.noscroll ::-webkit-scrollbar-thumb{
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.vignette-linear {
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
rgba(0, 0, 0, var(--vignette-opacity)) 0%,
|
||||
rgba(0, 0, 0, 0) var(--vignette-scale-linear),
|
||||
rgba(0, 0, 0, 0) calc(100% - var(--vignette-scale-linear)),
|
||||
rgba(0, 0, 0, var(--vignette-opacity)) 100%
|
||||
);
|
||||
}
|
||||
|
||||
.vignette-radial {
|
||||
background: radial-gradient(
|
||||
circle,
|
||||
rgba(0, 0, 0, 0) calc(100% - var(--vignette-scale-radial)),
|
||||
rgba(0, 0, 0, var(--vignette-opacity)) 100%
|
||||
);
|
||||
}
|
||||
|
||||
.animate {
|
||||
animation: fadeIn var(--fadeIn-duration);
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue