Upload website

This commit is contained in:
2025-09-29 11:24:54 +02:00
parent 337fb757d5
commit 7fa3715aec
82 changed files with 11586 additions and 2 deletions

48
dist/css/wrapfig.css vendored Normal file
View File

@@ -0,0 +1,48 @@
.wrapfig-wrapper {
width: 100%;
position: relative;
}
.wrapfig {
width: 100%;
}
.wrapfig.left {
float: none;
}
.wrapfig.right {
float: none;
}
.wrapfig-text {
margin: 5px;
width: 100%;
}
@media only screen and (min-width: 999px) {
.wrapfig {
width: 40%;
}
.wrapfig.left {
float: left;
}
.wrapfig.right {
float: right;
}
.wrapfig-text {
width: 58%;
}
.wrapfig-text.left {
margin-right: auto;
}
.wrapfig-text.right {
margin-left: auto;
}
}