
new file: .gitignore new file: .idea/.gitignore new file: .idea/dataSources.xml new file: .idea/dbr-backend.iml new file: .idea/jsLibraryMappings.xml new file: .idea/misc.xml new file: .idea/modules.xml new file: .idea/vcs.xml new file: go.mod new file: go.sum new file: main.go new file: pb_public/admin/index.html new file: pb_public/admin/upload.html new file: pb_public/css/base.css new file: pb_public/css/bootstrap-grid.css new file: pb_public/css/bootstrap-grid.css.map new file: pb_public/css/bootstrap-grid.min.css new file: pb_public/css/bootstrap-grid.min.css.map new file: pb_public/css/bootstrap-grid.rtl.css new file: pb_public/css/bootstrap-grid.rtl.css.map new file: pb_public/css/bootstrap-grid.rtl.min.css new file: pb_public/css/bootstrap-grid.rtl.min.css.map new file: pb_public/css/bootstrap-reboot.css new file: pb_public/css/bootstrap-reboot.css.map new file: pb_public/css/bootstrap-reboot.min.css new file: pb_public/css/bootstrap-reboot.min.css.map new file: pb_public/css/bootstrap-reboot.rtl.css new file: pb_public/css/bootstrap-reboot.rtl.css.map new file: pb_public/css/bootstrap-reboot.rtl.min.css new file: pb_public/css/bootstrap-reboot.rtl.min.css.map new file: pb_public/css/bootstrap-utilities.css new file: pb_public/css/bootstrap-utilities.css.map new file: pb_public/css/bootstrap-utilities.min.css new file: pb_public/css/bootstrap-utilities.min.css.map new file: pb_public/css/bootstrap-utilities.rtl.css new file: pb_public/css/bootstrap-utilities.rtl.css.map new file: pb_public/css/bootstrap-utilities.rtl.min.css new file: pb_public/css/bootstrap-utilities.rtl.min.css.map new file: pb_public/css/bootstrap.css new file: pb_public/css/bootstrap.css.map new file: pb_public/css/bootstrap.min.css new file: pb_public/css/bootstrap.min.css.map new file: pb_public/css/bootstrap.rtl.css new file: pb_public/css/bootstrap.rtl.css.map new file: pb_public/css/bootstrap.rtl.min.css new file: pb_public/css/bootstrap.rtl.min.css.map new file: pb_public/css/icons/bootstrap-icons.css new file: pb_public/css/icons/fonts/bootstrap-icons.woff new file: pb_public/css/icons/fonts/bootstrap-icons.woff2 new file: pb_public/css/slideshow.css new file: pb_public/css/style.css new file: pb_public/css/upload.css new file: pb_public/css/uploadfile.css new file: pb_public/index.html new file: pb_public/js/api/media.js new file: pb_public/js/bootstrap.bundle.js new file: pb_public/js/bootstrap.bundle.js.map new file: pb_public/js/bootstrap.bundle.min.js new file: pb_public/js/bootstrap.bundle.min.js.map new file: pb_public/js/bootstrap.esm.js new file: pb_public/js/bootstrap.esm.js.map new file: pb_public/js/bootstrap.esm.min.js new file: pb_public/js/bootstrap.esm.min.js.map new file: pb_public/js/bootstrap.js new file: pb_public/js/bootstrap.js.map new file: pb_public/js/bootstrap.min.js new file: pb_public/js/bootstrap.min.js.map new file: pb_public/js/jquery-1.11.0.js new file: pb_public/js/jquery.uploadfile.min.js new file: pb_public/js/multiple-uploader.js new file: pb_public/js/pocketbase/pocketbase.esm.js new file: pb_public/js/pocketbase/pocketbase.umd.js new file: pb_public/js/slideshow.js new file: pb_public/js/upload.js new file: pb_public/js/util.js
78 lines
1.4 KiB
CSS
78 lines
1.4 KiB
CSS
.slideshow-info, .slideshow-docs {
|
|
position: absolute;
|
|
padding: 5px 10px;
|
|
background: rgba(0,0,0,.8);
|
|
color: #fff;
|
|
visibility: hidden;
|
|
}
|
|
.slideshow-docs {
|
|
right: 0;
|
|
text-align: right;
|
|
}
|
|
.slideshow-docs span {
|
|
display: block;
|
|
}
|
|
.slideshow-wrapper {
|
|
width:100%;
|
|
height:100vh;
|
|
overflow: hidden;
|
|
background-position: center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.slideshow-wrapper video {
|
|
object-fit: contain;
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
#slideshow-next, #slideshow-prev {
|
|
position: absolute;
|
|
top: 70px;
|
|
width: 40px;
|
|
text-align: center;
|
|
font-size: 2em;
|
|
height: calc(100vh - 70px);
|
|
background: rgba(0,0,0,.2);
|
|
border: none;
|
|
color: #fff;
|
|
z-index: 10;
|
|
}
|
|
#slideshow-next.hidden, #slideshow-prev.hidden,#slideshow-autoplay.hidden {
|
|
display: none;
|
|
}
|
|
|
|
#slideshow-autoplay {
|
|
position: absolute;
|
|
bottom: 5px;
|
|
text-align: center;
|
|
font-size: 2em;
|
|
width: 5em;
|
|
left: calc(50% - 2.5em);
|
|
background: transparent;
|
|
border: none;
|
|
color: #fff;
|
|
z-index: 10;
|
|
}
|
|
#slideshow-autoplay:focus {
|
|
outline: 2px solid #fff;
|
|
}
|
|
#slideshow-next:focus, #slideshow-prev:focus {
|
|
border: none;
|
|
color: lime;
|
|
outline: none;
|
|
}
|
|
#slideshow-next {
|
|
right: 0;
|
|
}
|
|
.slideshow-wrapper[data-loaded=false]::after {
|
|
content: ''; /* loading <- Textanzeige */
|
|
position: absolute;
|
|
top: 3em;
|
|
background: rgba(0,0,0,.8);
|
|
padding: 5px 10px;
|
|
font-size: 1.5em;
|
|
z-index:10;
|
|
color: #fff;
|
|
transition: 200ms;
|
|
}
|