Mise à jour du 25 octobre 2025 à 15:00

This commit is contained in:
Toine 2025-10-25 15:00:15 +02:00
commit 9505998dae
147 changed files with 83565 additions and 0 deletions

File diff suppressed because one or more lines are too long

View 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
}

View 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);
}
}