-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (102 loc) · 1.94 KB
/
Copy pathstyles.css
File metadata and controls
120 lines (102 loc) · 1.94 KB
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
120
/* General container */
body {
font-family: Arial, sans-serif;
background-color: #f0f4f8;
margin: 0;
padding: 20px;
}
.container {
max-width: 700px;
margin: 0 auto;
background: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Header */
h1 {
text-align: center;
color: #2c3e50;
}
/* Topic selection */
.controls {
margin-bottom: 20px;
text-align: center;
}
label {
font-weight: bold;
margin-right: 10px;
}
select {
padding: 5px 10px;
font-size: 16px;
}
/* Question box */
.question {
background-color: #f7f9fc;
border: 1px solid #d1d9e6;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
}
.question h3 {
margin-top: 0;
color: #34495e;
}
/* Options styling */
.option {
display: block;
margin: 10px 0;
padding: 8px 12px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.2s ease;
border: 1px solid #d1d9e6;
}
.option input[type="radio"] {
margin-right: 10px;
}
.option:hover {
background-color: #e1e8f0;
}
/* Feedback */
.correct {
color: green;
font-weight: bold;
}
.incorrect {
color: red;
font-weight: bold;
}
.explanation {
margin-top: 8px;
font-style: italic;
color: #2c3e50;
}
/* Submit/Next button */
#submitBtn {
display: inline-block;
background-color: #3498db;
color: #fff;
border: none;
padding: 12px 25px;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.2s ease;
}
#submitBtn:hover {
background-color: #2980b9;
}
#submitBtn:disabled {
background-color: #95a5a6;
cursor: not-allowed;
}
/* Result display */
#result {
margin-top: 20px;
font-size: 18px;
font-weight: bold;
text-align: center;
color: #2c3e50;
}