Online-Training: Flip, Multiple, Matching, Hint, Schreiben

This commit is contained in:
2026-02-22 01:03:42 +01:00
parent be159bcbf0
commit bd2fea40fc
3 changed files with 466 additions and 36 deletions

View File

@@ -288,11 +288,11 @@ h1 {
cursor: pointer;
}
#trainingLeicht .training-card {
#trainingFlip .training-card {
height: 180px;
}
#trainingMittel .training-card {
#trainingMatching .training-card {
height: 100px;
font-size: 0.9rem;
margin: 0;
@@ -367,13 +367,11 @@ h1 {
}
#pdfPages,
#onlineTraining,
#trainingMittel,
#trainingSchwer {
#onlineTraining {
display: none;
}
#trainingMittel {
#trainingMatching {
display: flex;
justify-content: center;
gap: 10px;
@@ -425,3 +423,172 @@ h1 {
background-repeat: repeat;
background-size: 80px;
}
#trainingMultiple {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 20px;
margin-top: 30px;
}
.multiple-frage {
text-align: center;
font-size: 28px;
font-weight: bold;
}
.multiple-optionen {
display: flex;
flex-direction: column;
gap: 10px;
width: 300px;
}
.multiple-option {
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f0f0f0;
text-align: center;
transition: background-color 0.2s, transform 0.1s;
}
.multiple-option:hover {
background-color: #e0e0e0;
transform: scale(1.03);
}
.multiple-option[disabled] {
text-decoration: line-through;
background-color: #f5a8a8;
color: #800;
}
#trainingHint {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
margin-top: 30px;
}
.hint-frage {
text-align: center;
font-size: 28px;
font-weight: bold;
}
.hint-input {
width: 300px;
font-size: 18px;
padding: 10px;
text-align: center;
border-radius: 6px;
}
.hint-button {
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
border-radius: 6px;
border: none;
background-color: #005b5b;
color: white;
transition: 0.2s;
}
.hint-button:hover {
background-color: #007070;
}
.hint-feedback {
font-size: 16px;
font-weight: 600;
margin-top: 10px;
}
.hint-clue {
font-size: 20px;
letter-spacing: 2px;
margin-bottom: 10px;
color: #555;
text-align: center;
font-family: monospace;
}
#trainingWrite {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 20px;
margin-top: 30px;
}
#trainingWrite .schwer-frage {
text-align: center;
font-size: 28px;
font-weight: bold;
}
#trainingWrite input[type="text"] {
font-size: 18px;
border-radius: 6px;
}
#trainingWrite button {
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
border-radius: 6px;
border: none;
background-color: #005b5b;
color: white;
transition: 0.2s;
}
#trainingWrite button:hover {
background-color: #007070;
}
#trainingLevels {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
}
.training-title {
margin: 0 0 10px 0;
font-size: 20px;
font-weight: 600;
text-align: left;
}
#trainingLevels .buttons-row {
display: flex;
gap: 10px;
width: 100%;
}
#trainingLevels .buttons-row .level-btn {
flex: 1;
padding: 12px 0;
font-size: 16px;
font-weight: 600;
border: none;
border-radius: 8px;
background-color: #f0f0f0;
cursor: pointer;
text-align: center;
transition: background-color 0.2s, transform 0.1s;
}
#trainingLevels .buttons-row .level-btn:hover {
background-color: #e0e0e0;
transform: scale(1.02);
}