-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (45 loc) · 734 Bytes
/
Copy pathstyles.css
File metadata and controls
53 lines (45 loc) · 734 Bytes
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
:root {
--alice-blue: aliceblue;
}
#page-header {
text-align: center;
}
#nav-bar select,
option {
font-size: large;
padding: 0.5rem;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
padding-bottom: 3rem;
}
#report-area {
max-width: 90%;
background-color: var(--alice-blue);
}
.question-and-answer-card {
padding: 1rem;
margin-top: 1rem;
border-radius: 5px;
border: 1px solid;
background-color: white;
}
.question {
font-size: large;
}
.answer {
font-size: large;
font-weight: bold;
}
footer {
position: fixed;
bottom: 0;
background-color: white;
width: 100%;
text-align: center;
background-color: var(--alice-blue);
}