-
Notifications
You must be signed in to change notification settings - Fork 0
/
outliers.css
78 lines (68 loc) · 1.63 KB
/
outliers.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
/* General body styling */
body {
font-family: 'Avenir', sans-serif;
color: rgba(0, 31, 63, 0.8);
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
/* Header Styling */
header {
text-align: center;
padding: 20px;
}
h1 {
font-size: 2em;
color: rgba(0, 31, 63, 0.9);
margin: 20px 0;
}
/* Description Section */
#outliers-description {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: justify;
}
#outliers-description p {
font-size: 1em;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 20px;
line-height: 1.6;
}
/* Tableau Embed Section */
#tableau-outliers {
text-align: center; /* Centers the Tableau container */
margin-top: 30px;
display: flex; /* Use flexbox for centering */
justify-content: center; /* Horizontally centers the visualization */
}
#tableau-outliers .tableauViz {
width: 100%;
height: 800px;
max-width: 1200px; /* Set a max-width to prevent it from being too large */
}
/* Footer Styling */
footer {
text-align: center;
padding: 20px;
background-color: #f1f1f1;
color: rgba(0, 31, 63, 0.8);
font-size: 0.9em;
}
/* Family Story Section */
#family-story {
max-width: 800px; /* Limit the width like the sections above */
margin: 0 auto; /* Center the content */
padding: 20px; /* Add padding for readability */
text-align: justify; /* Keep text justified */
}
#family-story p {
font-size: 1em;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 20px;
line-height: 1.6;
}
footer p {
margin: 0;
}