-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (103 loc) · 1.85 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
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
121
122
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #dcebfb;
font-family: "Lexend", sans-serif;
}
.container {
text-align: center;
}
h1 {
color: #3A80C1;
font-size: 2.8rem;
}
.anchorTag-button {
color: #3A80C1;
font-size: 1rem;
padding: 10px 30px;
width: 170px;
text-decoration: none;
background-color: #FFFFFF;
border: 2px solid #3A80C1;
}
.anchorTag-button:hover {
color: #FFFFFF;
background-color: #3A80C1;
}
.quiz-container {
width: 750px;
padding: 20px;
background-color: #dcebfb;
border-radius: 10px;
}
.quiz-header {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.info {
color: #3A80C1;
font-weight: bolder;
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.info-item {
font-size: 25px;
font-weight: bolder;
}
h2 {
font-size: 1.5rem;
margin-bottom: 20px;
}
#choices-container {
display: flex;
flex-direction: column;
background-color: #dcebfb;
}
.choice-container {
display: flex;
flex-direction: row;
font-weight: bolder;
}
p {
margin-right: 10px;
padding: 5px;
}
.choice {
background-color: white;
padding: 10px;
margin: 5px 0;
cursor: pointer;
width: 700px;
border-color: transparent;
}
.correct {
background-color: #5BB75B;
color: #FFFFFF;
}
.incorrect {
background-color: red;
color: #FFFFFF;
}
.end-button {
color: #3A80C1;
font-size: 1rem;
margin-top: 4px;
padding: 10px 30px;
text-decoration: none;
background-color: #FFFFFF;
border: 2px solid #3A80C1;
}
.end-button:hover {
color: #FFFFFF;
background-color: #3A80C1;
}
.anchorTag-container {
display: flex;
flex-direction: column;
}