-
Notifications
You must be signed in to change notification settings - Fork 0
/
galton-disciple.css
67 lines (58 loc) · 1.09 KB
/
galton-disciple.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
/* General body styling */
body {
font-family: 'Avenir', sans-serif;
color: rgba(0, 31, 63, 0.85); /* Matches previous style */
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;
}
/* 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;
line-height: 1.6;
}
/* PDF Embed Section */
.pdf-container {
text-align: center;
margin: 30px auto;
}
.pdf-container object {
width: 100%;
max-width: 600px; /* Ensure responsive width */
height: 400px;
}
/* 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;
}