-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnswer.module.css
72 lines (60 loc) · 933 Bytes
/
Answer.module.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
.answer{
display: flex;
flex-direction: column;
color: var(--black);
}
.contentAnswer{
width: 400px;
display: flex;
flex: 1;
position: relative;
}
.front,
.back {
display: flex;
margin-bottom: 5px;
min-width: 100%;
}
.front{
flex-direction: row;
gap: 20px;
border-radius: 16px;
align-items: center;
background-color: var(--gray);
}
.back > div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
border-radius: 16px;
padding: 15px ;
color: var(--white);
}
.correct{
background-color: #1bad22;
}
.incorrect{
background-color: #c20e26;
}
.optionP{
padding: 28px 0;
font-weight: 500;
}
.optionH4{
padding: 28px 30px;
}
.letter{
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
text-transform: uppercase;
}
@media(max-width: 470px){
.answer{
width: 100%;
}
.contentAnswer{
width: 100%;
}
}