Merge /media/sdb1/gitRepositories/judo into redesign2018

This commit is contained in:
marko
2018-11-11 07:14:17 +01:00
10 changed files with 341 additions and 27 deletions

View File

@@ -0,0 +1,18 @@
include Makefile.cfg
ftpServer = ftpupload.net
ftpUser = unaux_22935783
ftpPassword = eeloor0D
ftpPathBase = /htdocs/videoalben/videoalben.2018
vidGalIndexPhp = /d/temp/cwsvJudo/homepage/redesign2018/markdownExperiment/src/galleryTemplates/indexHier.php
.PHONY: all
all:
.PHONY: ftpUpload
ftpUpload:
lftp -e 'set net:limit-rate 25600; mkdir -f $(ftpPathBase)/$(VID_GAL_DIR); mkdir -f $(ftpPathBase)/$(VID_GAL_DIR)/thumbnails; mkdir -f $(ftpPathBase)/$(VID_GAL_DIR)/webm; put $(vidGalIndexPhp) -o $(ftpPathBase)/$(VID_GAL_DIR)/index.php; put videos/config.inc.php -o $(ftpPathBase)/$(VID_GAL_DIR)/config.inc.php; mirror -R --ignore-time videos/thumbnails $(ftpPathBase)/$(VID_GAL_DIR)/thumbnails; mirror -R --ignore-time videos/webm $(ftpPathBase)/$(VID_GAL_DIR)/webm;quit' -u $(ftpUser),$(ftpPassword) ftp://$(ftpServer)

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

@@ -794,3 +794,44 @@
}
}
*/
/*
* Mit Text overlay-tes Bild
*/
.textoverlayedImage{
position: relative;
display: table;
}
.textoverlayedImage > img {
width: 100%;
height: auto;
}
.textoverlayedImage > div {
z-index: 99;
width: 70%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.textoverlayedImage > div > p{
text-align: center;
color: white;
font-weight: lighter;
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%;
}

View File

@@ -38,13 +38,17 @@ html{
/*
* Body
*/
body{
background: #FFAE00;
font-family: arial, helvetica, sans-serif;
}
/* Container für eine einzelne News */
/*
* Container für eine einzelne News
*/
.newsBox{
border: solid 1px #000000;
padding: 1vmin;
@@ -113,6 +117,9 @@ body{
.fullWidth{
width:100%;
}
.valignMiddle{
vertical-align:middle;
}
/* Bilder in voller Breite */
.bigPicture{

View File

@@ -0,0 +1,7 @@
<?php
include_once("config.inc.php");
$wkName = empty($wkName) ? "<fehlender Wettkampfname>" : $wkName;
include_once( $_SERVER['DOCUMENT_ROOT']."/ressourcen/phpLib/videoGallery/videoGallery.tmpl.php" );
?>

View File

@@ -0,0 +1,20 @@
<?php
include_once("config.inc.php");
$basePath = "/users/cwsvjudo/www";
require_once($basePath."/config/phpcount.config.php");
require_once($basePath."/ressourcen/phpLib/phpcount/phpcount.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>In Arbeit</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php PHPCount::AddHit($wkName." - Videoalbum (Vorschau)");?>
</head>
<body>
<p>Die Videos des Wettkampfes <?php echo($wkName);?> sind momentan noch in Vorbereitung. Einfach später noch mal probieren.</p>
<img style="width:100%;" src="/ressourcen/graphiken/misc/staffeleiM%e4nnlein.jpg" />
<p>Wer ganz ungeduldig ist, kann ja schon mal <a href="./indexHier.php">kiebitzen</a>.</p>
</body>
</html>