Der Wettkampfplaner in der aktuellen Version
neue Datei: addEvent.php neue Datei: addFahrt.php neue Datei: addStarter.php neue Datei: addStarterDev.php neue Datei: admin/.htaccess neue Datei: admin/addEvent.php neue Datei: admin/addMitfahrer.php neue Datei: admin/adminAddStarter.php neue Datei: admin/adminFunctions.php neue Datei: admin/adminFunctions.php.inc neue Datei: admin/adminUpdateStarterErgebnis.php neue Datei: admin/config.inc.php neue Datei: admin/index.php neue Datei: admin/listEvents.php neue Datei: admin/listUsers.php neue Datei: admin/newsLetter.php neue Datei: admin/register.php neue Datei: admin/resetPassword.php neue Datei: admin/reseteMitfahrer.php neue Datei: admin/showEvent.php neue Datei: admin/showFahrt.php neue Datei: admin/showUser.php neue Datei: admin/verteileMitfahrer.php neue Datei: auth.php neue Datei: authLogin.php neue Datei: calendar.php neue Datei: changePassword.php neue Datei: editFahrt.php neue Datei: eventKalender.php neue Datei: galImgPicker.php neue Datei: horstWolfJudosport.php neue Datei: index.php neue Datei: infoZettel.php neue Datei: lib/wkParticipoLib.inc.php neue Datei: local/.htaccess neue Datei: local/db.php.inc neue Datei: local/wkParticipoConf.php.inc neue Datei: login.php neue Datei: loginDev.php neue Datei: logout.php neue Datei: showWkEvent.php neue Datei: style.css neue Datei: styleDev.css neue Datei: userInfo.php
This commit is contained in:
@@ -0,0 +1,203 @@
|
||||
/* Box-Sizing global auf die BorderBox stellen */
|
||||
html{
|
||||
box-sizing: border-box;
|
||||
}
|
||||
*, ::before, ::after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
|
||||
body{
|
||||
background-color: #ffae00;
|
||||
}
|
||||
|
||||
|
||||
.loginForm{}
|
||||
.loginForm fieldset{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
/* touchable Links*/
|
||||
.touchLink{
|
||||
display: inline-block;
|
||||
padding: 0.25em 0 0.25em 0;
|
||||
margin: 0.25em 0 0.25em 0;
|
||||
background-color: #FF8100;
|
||||
border-radius: .5em;
|
||||
}
|
||||
|
||||
/* touchable Buttons */
|
||||
|
||||
.touchButton{
|
||||
display: block;
|
||||
margin: .5em 0;
|
||||
font-size: 1em;
|
||||
line-height: 1.5em;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
background: #fdfdfd;
|
||||
background: linear-gradient(to bottom, #fdfdfd 0%,#bebebe 100%);
|
||||
border: 1px solid #bbb;
|
||||
}
|
||||
.touchButton[disabled]{
|
||||
color: Grey;
|
||||
}
|
||||
|
||||
|
||||
nav ul {
|
||||
width: 100%;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
nav ul li a{
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
nav ul li a div{
|
||||
text-align: center;
|
||||
font-size: large;
|
||||
font-weight: bolder;
|
||||
border: 3px gray outset;
|
||||
background: linear-gradient(to bottom, #FFAE00 0%,#FF8100 100%);
|
||||
padding-top: .25em;
|
||||
padding-bottom: .25em;
|
||||
}
|
||||
|
||||
.navLink div{
|
||||
display: inline;
|
||||
}
|
||||
meldungsBox{
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-device-width: 481px){
|
||||
.wkBox{
|
||||
border: 1px solid black;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.wkBox nav{
|
||||
width: 32%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.wkBox nav ul li{
|
||||
display: list-item;
|
||||
}
|
||||
.wkInfo{
|
||||
width: 68%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
nav ul{
|
||||
display: table;
|
||||
}
|
||||
|
||||
nav ul li{
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
nav ul li a div{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
button[type=submit] {
|
||||
display: block;
|
||||
margin: .5em 0;
|
||||
font-size: 1em;
|
||||
line-height: 1.5em;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
background: #fdfdfd;
|
||||
background: linear-gradient(to bottom, #fdfdfd 0%,#bebebe 100%);
|
||||
border: 1px solid #bbb;
|
||||
}
|
||||
button[disabled]{
|
||||
color: Grey;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width: 481px) {
|
||||
nav ul li a div{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
.touchLink div{
|
||||
border: 3px gray outset;
|
||||
padding-top: .5em;
|
||||
font-size: large;
|
||||
font-weight: bolder;
|
||||
background: linear-gradient(to bottom, #FFAE00 0%,#FF8100 100%);
|
||||
padding-top: .25em;
|
||||
padding-bottom: .25em;
|
||||
text-align: center;
|
||||
}
|
||||
.touchLink li{
|
||||
border: 3px gray outset;
|
||||
padding-top: .5em;
|
||||
font-size: large;
|
||||
font-weight: bolder;
|
||||
background: linear-gradient(to bottom, #FFAE00 0%,#FF8100 100%);
|
||||
padding-top: .25em;
|
||||
padding-bottom: .25em;
|
||||
text-align: center;
|
||||
}
|
||||
.touchLink{
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
button[type=submit] {
|
||||
-webkit-appearance: none; -moz-appearance: none;
|
||||
display: block;
|
||||
margin: .5em 0;
|
||||
font-size: 1em;
|
||||
line-height: 1.5em;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
background: #fdfdfd;
|
||||
background: -moz-linear-gradient(top, #fdfdfd 0%, #bebebe 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#bebebe));
|
||||
background: -webkit-linear-gradient(top, #fdfdfd 0%,#bebebe 100%);
|
||||
background: -o-linear-gradient(top, #fdfdfd 0%,#bebebe 100%);
|
||||
background: -ms-linear-gradient(top, #fdfdfd 0%,#bebebe 100%);
|
||||
background: linear-gradient(to bottom, #fdfdfd 0%,#bebebe 100%);
|
||||
border: 1px solid #bbb;
|
||||
-webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;
|
||||
}
|
||||
button[disabled]{
|
||||
color: Grey;
|
||||
}
|
||||
input[type=text], input[type=url], input[type=email], input[type=password], input[type=tel] {
|
||||
-webkit-appearance: none; -moz-appearance: none;
|
||||
display: block;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: 2em;
|
||||
// line-height: 1.6em;
|
||||
font-size: 1.5em;
|
||||
border: 1px solid #bbb;
|
||||
}
|
||||
#meldungsBox{
|
||||
// font-size: 3em;
|
||||
border: 1px solid black;
|
||||
}
|
||||
.wkBox{
|
||||
// font-size: 3em;
|
||||
border: 1px solid black;
|
||||
|
||||
}
|
||||
fieldset div{
|
||||
font-size: 2em;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user