-
Notifications
You must be signed in to change notification settings - Fork 1
/
quiz.html
119 lines (103 loc) · 2.54 KB
/
quiz.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Quiz-Spiel</title>
<link href="https://fonts.googleapis.com/css?family=Orbitron&display=swap" rel="stylesheet">
<style>
body {
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #fff;
font-family: 'Orbitron', sans-serif;
font-size: 18px;
}
.quiz {
text-align: center;
width: 80%; /* Anfangsbreite für mobile Geräte */
margin: auto;
}
.quiz h2 {
font-size: 24px;
margin-bottom: 15.5px; /* Goldener Schnitt von 24px */
}
#antworten {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px; /* Abstand zwischen den Antwortbuttons */
}
#antworten.correct {
background-color: lightgreen;
}
#antworten.wrong {
background-color: red;
}
.quiz button {
cursor: pointer;
background-color: rgba(158, 103, 162, 1);
color: #000;
border: none;
padding: 10px;
border-radius: 10px;
transition: background 0.5s;
font-size: 18px;
width: 100%; /* Button nimmt die volle verfügbare Breite ein */
}
.quiz button:hover {
background-color: #fff;
color: #000;
}
.quiz button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.timer {
font-size: 38.8px; /* Goldener Schnitt von 24px */
margin-bottom: 20px;
}
#feedback {
font-size: 24px;
margin-top: 15px; /* Goldener Schnitt von 24px */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#spielername {
margin-bottom: 10px;
width: 100%; /* Anfangsbreite für mobile Geräte */
padding: 10px;
font-size: 18px;
}
.correct-answer {
background-color: #00ff00; /* Sie können die gewünschte grüne Farbe einstellen */
}
/* Media Query für größere Bildschirme */
@media (min-width: 768px) {
.quiz {
width: 61.8%; /* Goldener Schnitt von 100% */
}
#spielername {
width: 61.8%; /* Goldener Schnitt von 100% */
}
}
</style>
</head>
<body>
<div class="quiz">
<input type="text" id="spielername" placeholder="Spielername">
<button id="startButton">Start</button>
<h2 id="frageText"></h2>
<div id="antworten"></div>
<div class="timer" id="timer"></div>
<div id="feedback"></div>
</div>
<script src="script.js"></script>
</body>
</html>