-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (69 loc) · 1.37 KB
/
styles.css
File metadata and controls
83 lines (69 loc) · 1.37 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
body {
background-color: #f8f9fa;
color: #333;
}
.container {
max-width: 800px;
}
#question-container .card-body {
padding: 1.5rem;
}
.option-btn {
text-align: left;
padding: 10px 15px;
margin-bottom: 8px;
border-radius: 4px;
width: 100%;
background-color: #f1f3f5;
border: 1px solid #dee2e6;
transition: all 0.2s;
}
.option-btn:hover {
background-color: #e9ecef;
border-color: #ced4da;
}
.option-btn.selected {
background-color: #cfe2ff;
border-color: #9ec5fe;
}
.option-btn.correct {
background-color: #d1e7dd;
border-color: #a3cfbb;
}
.option-btn.incorrect {
background-color: #f8d7da;
border-color: #f5c2c7;
}
.option-letter {
font-weight: bold;
margin-right: 10px;
display: inline-block;
width: 25px;
}
.question-header {
margin-bottom: 15px;
}
#feedback-container .alert-success {
background-color: #d1e7dd;
color: #0f5132;
border-color: #a3cfbb;
}
#feedback-container .alert-danger {
background-color: #f8d7da;
color: #842029;
border-color: #f5c2c7;
}
.special-option {
background-color: #f8f9fa;
border-color: #ced4da;
margin-top: 0.5rem;
}
.special-option:hover {
background-color: #e2e6ea;
border-color: #bdc4cc;
}
.special-options-separator {
margin-top: 1.5rem;
margin-bottom: 1rem;
border-top: 1px dashed #dee2e6;
}