Gallerien in der Wettkampfeinzelansicht, Makefile für den ftpUpload

einer Videogallerie und Userattribute im Wettkampfplaner

Changes to be committed:

- Erweiterung der Wettkampfeinzelansicht um die (evtl. vorhandenen)
Galerien
 - modified:   phpLib/cwsvJudo/wkKalender.php
 - modified:   src/css/cwsvJudo-2018-mainNav.css
 - modified:   src/css/cwsvJudo-2018-wkKalender.css
- Makefile für das Hochladen einer Videogalerie
 - new file:   src/Makefiles/Makefile.ftpUpload
- Gehören mit zu den Gallerientemplates
 - new file:   src/galleryTemplates/indexHier.php
 - new file:   src/galleryTemplates/indexInArbeit.php
- Userattribute im Wettkampfplaner (war liegengeblieben)
 - new file:   wkParticipo/lib/wkParticipo-userAttribute.php
This commit is contained in:
marko
2018-11-06 10:21:53 +01:00
parent 00a50e2f0c
commit 2b7ab02db4
7 changed files with 246 additions and 11 deletions

View File

@@ -2,8 +2,8 @@
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: space-between;
font-family: 'Orbitron-Medium', sans-serif;
/* line-height: 1.6;*/
margin: .5em 0;
padding: 0;
border: 1px solid #a2a2a2;
@@ -45,20 +45,16 @@
}
/* =================================
Media Queries
==================================== */
/*
* Media Queries
*/
@media (min-width: 640px) {
#mainNav {
display: flex;
flex-direction: row;
align-items: flex-end;
/* align-items: flex-end;*/
}
#mainNav > a{
padding: .5em .5em;

View File

@@ -822,3 +822,16 @@
line-height: 2;
padding: 0 10%;
}
/*
* Die Galerie der Galerien in der wkInfoBox
*/
.wkBoxMediaGallery{
display: flex;
flex-flow: row wrap;
justify-content: space-around;
align-items: center;
}
.wkBoxMediaGallery > *{
flex-basis:50%;
}