-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
80 lines (67 loc) · 1.1 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
padding: 1rem;
color: #fff;
}
.logo {
width: 100px;
}
.exam-type,
.score {
margin-left: 1rem;
}
.question-card {
max-width: 1020px;
margin: 2rem auto;
padding: 2rem;
background-color: #f4f4f4;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.question {
margin-bottom: 1.5rem;
}
.options {
display: flex;
flex-direction: column;
}
.option {
margin-bottom: 1rem;
}
.submit-button {
background-color: #333;
color: #fff;
padding: 0.5rem 1rem;
width: 100px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-button:hover {
background-color: #555;
}
.incorrect {
color: #E53935;
margin: 20px;
background-color: #FFEBEE;
border: 1px solid #E53935;
padding: 20px;
}
.question > p {
font-weight: bold;
}
label {
margin-left: 10px;
}