174 lines
4.4 KiB
HTML
174 lines
4.4 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;
|
|
}
|
|
div.ex1 {
|
|
background-color: lightblue;
|
|
width:auto;
|
|
height: 110px;
|
|
overflow: scroll;
|
|
margin: 8px;
|
|
}
|
|
.dot {
|
|
height: 150px;
|
|
width: 150px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
button {
|
|
background-color: rgb(107, 110, 107);
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 30%;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
padding-inline-start: 20px ;
|
|
}
|
|
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
|
|
input[type="checkbox"][id^="myCheckbox"] {
|
|
display: none;
|
|
}
|
|
|
|
label {
|
|
border: 1px solid #fff;
|
|
padding: 10px;
|
|
display: block;
|
|
position: relative;
|
|
margin: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
label:before {
|
|
background-color: white;
|
|
color: white;
|
|
content: " ";
|
|
display: block;
|
|
border-radius: 50%;
|
|
border: 1px solid grey;
|
|
position: absolute;
|
|
top: -5px;
|
|
left: -5px;
|
|
width: 25px;
|
|
height: 25px;
|
|
text-align: center;
|
|
line-height: 28px;
|
|
transition-duration: 0.4s;
|
|
transform: scale(0);
|
|
}
|
|
|
|
label img {
|
|
height: 50px;
|
|
width: 50px;
|
|
transition-duration: 0.2s;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
:checked + label {
|
|
border-color: #ddd;
|
|
}
|
|
|
|
:checked + label:before {
|
|
content: "✓";
|
|
background-color: grey;
|
|
transform: scale(1);
|
|
}
|
|
|
|
:checked + label img {
|
|
transform: scale(0.9);
|
|
/* box-shadow: 0 0 5px #333; */
|
|
z-index: -1;
|
|
}
|
|
@keyframes mark {
|
|
0% {border: none;}
|
|
100% {border: 9px solid lawngreen; height: 118px; width: 118px;}
|
|
}
|
|
@keyframes unmark {
|
|
0% {border: 9px solid lawngreen; height: 118px; width: 118px;}
|
|
100% {border: none;}
|
|
}
|
|
@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 id="container" style="display: flex; flex-direction: column; justify-content: space-between; padding: 1rem">
|
|
|
|
<div style="display: flex; flex-direction: column; align-items: center;">
|
|
<p id="Aufgabe" style="width: 80%; height: 100px;"></p>
|
|
<p id ="Hinweis" style="width: 80%; height: 100px;"></p>
|
|
</div>
|
|
|
|
<div style="display: flex; flex-direction: row; justify-content:space-evenly;">
|
|
<div>
|
|
<img src="img/vv.jpg" id="acc1" width="100" height="100" style=""/>
|
|
<input type="checkbox" style="display: none;" id="a1">
|
|
<label id="labelacc1"></label>
|
|
</div>
|
|
<div>
|
|
<img src="img/vv.jpg" id="acc2" width="100" height="100" style=""/>
|
|
<input type="checkbox" style="display: none;" id="a2">
|
|
<label id="labelacc2"></label>
|
|
</div>
|
|
<div>
|
|
<img src="img/vv.jpg" id="acc3" width="100" height="100" style=""/>
|
|
<input type="checkbox" style="display: none;" id="a3">
|
|
<label id="labelacc3"></label>
|
|
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<button type="submit" id="beantworten">Absenden</button><button id="adminSave" style="display: none;">Änderungen Speichern</button><button id="allezeigen" style="display: none;">Alle Zeigen</button><select id="adminQuestionSelect" style="display: none;">
|
|
<option>Aufgabentyp wählen</option>
|
|
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<div>
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript" src="editAdmin.js"></script>
|
|
<script type="text/javascript" src="adminQuestionSelect.js"></script>
|
|
<script type="text/javascript" src="qbase.js"></script>
|
|
<script type="text/javascript" src="app_44.js"></script>
|
|
<script type="text/javascript" src="konten.js"></script>
|
|
<script type="text/javascript" src="beantworten.js"></script>
|
|
<script type="text/javascript" src="stretchForm.js"></script>
|
|
<script type="text/javascript" src="progressBar.js"></script>
|
|
</html>
|