-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.css
More file actions
105 lines (94 loc) · 2.04 KB
/
common.css
File metadata and controls
105 lines (94 loc) · 2.04 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
.question-box {
width: 70%;
margin: 20px auto;
padding: 20px;
padding-top: 5px;
padding-bottom: 5px;
border: 4px solid gold;
border-radius: 11px;
color: white;
font-weight: 500;
background-color: #04214e;
}
.options {
display: flex;
justify-content: space-between;
}
.option {
width: calc(50% - 10px);
padding: 10px;
margin-bottom: 9px;
border: 1px solid gold;
border-radius: 25px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.option:hover {
background-color: #f0f0f064;
}
/* .option.selected {
background-color: #007bff;
color: #fff;
} */
.option.correct {
background-color: #28a745;
/* Green color for correct option */
color: #fff;
}
.option.incorrect {
background-color: #dc3545;
/* Red color for incorrect option */
color: #fff;
}
.navbar {
background-color: rgba(0, 0, 0, 0.5);
/* Transparent black */
padding: 10px;
position: relative;
/* Required for positioning the price box */
display: flex;
/* Use flexbox for centering */
justify-content: center;
/* Center horizontally */
}
/* Price box styling */
.price-box {
background-color: orange;
color: white;
font-size: 14px;
padding: 5px 10px;
border-radius: 5px;
font-size: larger;
font-weight: 700;
}
.lifeline {
background-color: rgb(33, 6, 107);
color: white;
font-size: 14px;
padding: 5px 10px;
border-radius: 50px;
border: 2px solid white;
font-size: larger;
font-weight: 700;
margin-left: 4px;
}
.lifeline:hover {
background-color: #544a4a;
}
.lifeline::after {
background-color: #f0f0f064;
}
.answer {
background-color: transparent;
color: white;
font-size: 14px;
padding: 5px 10px;
border-radius: 5px;
/* border: 2px solid green; */
font-size: larger;
font-weight: 700;
margin-left: 4px;
}
.transparent-font-color {
color: transparent;
}