Deployed b6302e3 with MkDocs version: 1.6.1

This commit is contained in:
2025-10-31 10:38:41 +00:00
commit 6440463f24
367 changed files with 97732 additions and 0 deletions

24
stylesheets/extra.css Normal file
View File

@@ -0,0 +1,24 @@
.md-grid {
max-width: 80%;
}
img {
height: auto;
width: auto;
border: none;
border-radius: 10px;
transition: transform ease-in-out 0.3s;
}
img:hover {
transform: scale(1.025); /* Slightly enlarges on hover */
}
.video-wrapper iframe {
width: 100%; /* Ratio 16:9 */
height: 600px; /* Ratio 16:9 */
border-radius: 10px; /* Rounded Corners */
transition: transform ease-in-out 0.3s;
}
.video-wrapper:hover iframe {
transform: scale(1.025); /* Slightly enlarges on hover */
}