File size: 1,566 Bytes
1677ecc
 
 
 
15ca1e9
1677ecc
 
15ca1e9
 
 
 
1677ecc
15ca1e9
 
 
 
 
 
1677ecc
15ca1e9
 
 
 
 
1677ecc
eda232c
15ca1e9
8cd506d
15ca1e9
 
 
 
 
 
44f0b86
 
 
15ca1e9
44f0b86
15ca1e9
44f0b86
eda232c
cdf7dae
 
8cd506d
cdf7dae
 
 
15ca1e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cdf7dae
90e32d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

#quiz-container {
    display: none;
    padding: 20px;
    margin: 20px auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#file-selection, #results-container {
    padding: 20px;
    margin: 20px auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

#options {
    margin-top: 20px;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
}

#navigation {
    justify-content: start;
    margin-top: 20px;
}

#timer, #question-number {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
}

button#restart {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button#restart:hover {
    background-color: #218838;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

td.correct {
    background-color: #d4edda;
    color: #155724;
}

td.incorrect {
    background-color: #f8d7da;
    color: #721c24;
}

td.not-answered {
    background-color: #fff3cd;
    color: #856404;
}