86 lines
2.7 KiB
HTML
86 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<style>
|
|
body {margin:0;}
|
|
|
|
.button1 {
|
|
background-color: rgb(107, 110, 107);
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: auto;
|
|
}
|
|
button {
|
|
background-color: rgb(107, 110, 107);
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 30%;
|
|
}
|
|
input[type="checkbox"][id^="myCheckbox"] {
|
|
display: none;
|
|
}
|
|
|
|
label {
|
|
border: 1px solid #fff;
|
|
padding: 10px;
|
|
display: block;
|
|
position: relative;
|
|
margin: 10px;
|
|
cursor: pointer;
|
|
}
|
|
@keyframes flashred {
|
|
0% {background-color: white;}
|
|
10% {background-color: red;}
|
|
100% {background-color: white;}
|
|
}
|
|
@keyframes flashgreen {
|
|
0% {background-color: white;}
|
|
10% {background-color: rgb(47, 255, 47);}
|
|
100% {background-color: white;}
|
|
}
|
|
@keyframes onload{
|
|
0% {opacity: 0}
|
|
100% {opacity: 1}
|
|
}
|
|
</style>
|
|
<body style="animation: onload 1s linear">
|
|
<form action="/action_page.php" method="post" id="main" >
|
|
<div>
|
|
<div>
|
|
<button class="button1" type="submit"><i class="fa fa-close"></i></button>
|
|
</div>
|
|
<div style="text-align:center">
|
|
<div class="w3-light-grey">
|
|
<div class="w3-green" id="progressBar" style="height:24px;width:25px"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="container" style="display: flex; flex-direction: column; justify-content: space-between; padding: 1rem">
|
|
<div style="display: flex; flex-direction: row; justify-content:space-evenly;">
|
|
<img src="img/vv.jpg" id="acc1" style="width: 100px; height: 100px;"/>
|
|
<img src="img/vv.jpg" id="acc2" style="width: 100px; height: 100px;"/>
|
|
<img src="img/vv.jpg" id="acc3" style="width: 100px; height: 100px;"/>
|
|
</div>
|
|
<p id="Text_6" style="height: 100%; width: 100%;">
|
|
Text_6
|
|
</p>
|
|
<button type="submit" id="naechsteFrage">zur nächsten Frage</button> <button id="adminSave" style="display: none;">Änderungen Speichern</button><button id="allezeigen" style="display: none;">Alle Zeigen</button>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
<script type="text/javascript" src="editAdmin.js"></script>
|
|
<script type="text/javascript" src="/app_49.js"></script>
|
|
<script type="text/javascript" src="progressBar.js"></script>
|
|
<script type="text/javascript" src="stretchForm.js"></script>
|
|
<script type="text/javascript" src="nextQ.js"></script>
|
|
</html>
|