-
Notifications
You must be signed in to change notification settings - Fork 0
/
fisher.css
80 lines (70 loc) · 1.31 KB
/
fisher.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
/* General body styling */
body {
font-family: 'Avenir', sans-serif;
color: rgba(0, 31, 63, 0.85);
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
/* Header Styling */
header {
text-align: center;
padding: 20px;
}
h1 {
font-size: 2.5em;
color: rgba(0, 31, 63, 0.9);
margin: 20px 0;
}
.subtitle {
font-size: 1.3em;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 20px;
}
/* Section Styling */
section {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: justify;
}
section h2 {
font-size: 1.8em;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 15px;
}
section p {
font-size: 1.1em;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 20px;
}
/* Styling for blockquote */
blockquote {
font-size: 1.2em;
font-style: italic;
margin: 20px auto;
padding: 10px 20px;
border-left: 4px solid #001f3f;
color: rgba(0, 31, 63, 0.85);
}
/* Bar chart images */
.data-image {
display: block;
max-width: 100%;
height: auto;
margin: 20px auto;
border: 2px solid #001f3f;
border-radius: 5px;
}
/* Footer Styling */
footer {
text-align: center;
padding: 20px;
background-color: #f1f1f1;
color: rgba(0, 31, 63, 0.8);
font-size: 0.9em;
}
footer p {
margin: 0;
}