Laufende Arbeiten am reDesign2018

- urlRewriting für "schönere" URL
	neue Datei:     markdownExperiment/.htaccess
	neue Datei:     markdownExperiment/.htaccess-phpAppender
- Ergänzungen im buildProzess
	geändert:       markdownExperiment/Makefile
- Umstellung auf externe yamlNavTargets

- buildFiles sind wiederherstellbar und müsen nicht getrackt werden
	gelöscht:       markdownExperiment/build/.uploadMarker/css/cwsvJudo.css
	gelöscht:       markdownExperiment/build/.uploadMarker/kontakt.php
	gelöscht:       markdownExperiment/build/.uploadMarker/verein.php
	gelöscht:       markdownExperiment/build/.uploadMarker/wkKalender.php
	gelöscht:       markdownExperiment/build/css/cwsvJudo.css
	gelöscht:       markdownExperiment/build/kontakt.php
	gelöscht:       markdownExperiment/build/verein.php
	gelöscht:       markdownExperiment/build/wkKalender.php
- ein config Verzeichnis für .. configDateien
	neue Datei:     markdownExperiment/config/.htaccess
	neue Datei:     markdownExperiment/config/cwsvJudo.config.php
	neue Datei:     markdownExperiment/config/db.inc
	neue Datei:     markdownExperiment/config/phpcount.config.php
- Änderungen/Ergänzungen/Verbesserungen am cssDesign
	neue Datei:     markdownExperiment/css/cwsvJudo-2018-galTable.css
	geändert:       markdownExperiment/css/cwsvJudo-2018-mainNav.css
	neue Datei:     markdownExperiment/css/cwsvJudo-2018-news.css
	geändert:       markdownExperiment/css/cwsvJudo-2018-subNav.css
	geändert:       markdownExperiment/css/cwsvJudo-2018-wkKalender.css
- neue Seiten
- Umstellung auf referenzierte navTargets
	neue Datei:     markdownExperiment/md/galerien.md
	neue Datei:     markdownExperiment/md/index.md
	neue Datei:     markdownExperiment/md/indexTest.md
	geändert:       markdownExperiment/md/kontakt.md
	neue Datei:     markdownExperiment/md/trainingszeiten.md
	geändert:       markdownExperiment/md/verein.md
	geändert:       markdownExperiment/md/wkKalender.md
- kleinere Änderungen
	geändert:       markdownExperiment/pandocTemplate/cwsvJudo.html5.pandocTemplate
- dynamische Inhalte werden mittels phpAufrufen realisiert
	neue Datei:     markdownExperiment/phpLib/cwsvJudo/galTable.php
	geändert:       markdownExperiment/phpLib/cwsvJudo/newsLib.php
	neue Datei:     markdownExperiment/phpLib/cwsvJudo/newsTableHtml.php
	geändert:       markdownExperiment/phpLib/cwsvJudo/wkKalender.php
- neuer Counter
	neue Datei:     markdownExperiment/phpLib/phpcount
- Experimente zu Anchor/References in yamlFiles im Zusammenspiel mit pandoc
	neue Datei:     markdownExperiment/temp/testingYamlRef/refTest.yaml
	neue Datei:     markdownExperiment/temp/testingYamlRef/refTestB.yaml
	neue Datei:     markdownExperiment/temp/testingYamlRef/refTestWikipedia.md
	neue Datei:     markdownExperiment/temp/testingYamlRef/refTestWikipedia.yaml
	neue Datei:     markdownExperiment/temp/testingYamlRef/yamltest.pandocTemplate
- pythonTool zum Mergen von yamlFiles
	neue Datei:     markdownExperiment/tools/yamlMerge.py
- Auslagerungen von navTargets in eigene yamlFiles, damit mehrfach vorkommende Ziele referenziert werden können (DRY)
	neue Datei:     markdownExperiment/index.yaml
	neue Datei:     markdownExperiment/yaml/galerien.subNav.yaml
	neue Datei:     markdownExperiment/yaml/index.subNav.yaml
	neue Datei:     markdownExperiment/yaml/kontakt.subNav.yaml
	neue Datei:     markdownExperiment/yaml/mainNav.yaml
	neue Datei:     markdownExperiment/yaml/navTargets.yaml
	neue Datei:     markdownExperiment/yaml/trainingszeiten.subNav.yaml
	neue Datei:     markdownExperiment/yaml/verein.subNav.yaml
	neue Datei:     markdownExperiment/yaml/wkKalender.subNav.yaml
This commit is contained in:
marko
2018-05-07 17:16:32 +02:00
parent 1372a27f67
commit a3ca5578f1
48 changed files with 697 additions and 1416 deletions

View File

@@ -0,0 +1,33 @@
.yearSelector{
display: inline;
text-align: center;
}
.yearSelector select{
/* font-size: 7.5vmin;*/
text-align: center;
}
.galTable{
width: 100%;
}
.galTable tr, th, td {
/* display: block;*/
vertical-align: middle;
}
.galTable tr:nth-child(odd){
background-color: #FF8100;
}
.galTable tr td img{
/* float: right;*/
display: inline;
vertical-align: middle;
}
/* Die erste Zelle in jeder Zeile ist das Datum*/
/*
.galTable > tr > td:nth-child(1){}
*/

View File

@@ -11,17 +11,18 @@
}
#mainNav > a {
display: flex;
align-items: center;
color: #34495e;
text-decoration: none;
padding: 10px 15px;
text-transform: uppercase;
text-align: center;
display: block;
color: #34495e;
}
#mainNav > a > img{
height: 1em;
height: 2em;
width: auto;
}

View File

@@ -0,0 +1,48 @@
.newsArtikel{
width: 100%;
background-color: #FFAE00;
box-shadow: 0 1px 2px 0 rgba(0,0,0,.5);
display: flex;
flex-direction: column;
}
.newsHeader{
display: flex;
align-items: stretch;
justify-content: space-between;
background-color: #FF8100;
}
.newsDatum{
white-space: nowrap;
align-self: center;
}
.newsBetreff{
margin: auto;
margin: auto;
margin-left: 1vw;
margin-right: 1vw;
text-align: end;
flex-grow: 1;
}
.newsPromoImage{
float: left;
}
.newsText{
margin: 1vw;
}
.newsText a {
float: none;
}
.newsText img{
max-width: 100%;
display: block;
margin: auto;
box-shadow: 0 1px 2px 0 rgba(0,0,0,.5);
}
.newsFooter{
background-color: #FF8100;
}
.newsAutor::before{
content: "Msg\0000a0";
}

View File

@@ -19,6 +19,9 @@
display: block;
color: #34495e;
}
.subNav > a:last-child{
margin-left: auto;
}
.subNav > a > img{
height: 1em;
@@ -51,6 +54,9 @@
align-items: stretch;
justify-content: flex-end;
}
.subNav > a:last-child{
display: none;
}
.subNav > a{
display: flex;
justify-content: flex-end;

View File

@@ -566,4 +566,4 @@
background-color: #ffccbc;
}
}
*/*/
*/