-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (80 loc) · 1.5 KB
/
styles.css
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
background-color: #f4f4f9;
color: #333;
}
.container {
width: 90%;
max-width: 600px;
margin-top: 20px;
text-align: center;
}
.hidden {
display: none;
}
.settings, #quizSection, #matrixSection, #errorSection {
margin: 20px 0;
}
button {
margin: 5px;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button.danger {
background-color: #f55;
color: white;
}
#resultMatrix {
width: 100%;
border-collapse: collapse;
}
#resultMatrix td, #resultMatrix th {
width: 10%;
height: 40px;
text-align: center;
vertical-align: middle;
border: 1px solid #ddd;
font-weight: bold;
}
#resultMatrix th {
background-color: #f0f0f0;
}
.cell {
background-color: #d1d1d1;
}
.green {
background-color: #a2e6a2;
}
#errorList {
list-style-type: none;
padding: 0;
text-align: left;
}
#errorList li {
margin: 5px 0;
font-size: 1rem;
color: #333;
}
.feedback {
margin-top: 10px;
font-size: 1.2em;
font-weight: bold;
transition: background-color 1s ease;
}
.feedback.correct {
background-color: #a2e6a2;
opacity: 1;
transform: scale(1);
}
.feedback.incorrect {
background-color: #f55;
opacity: 1;
transform: scale(1);
}