-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmagnetic-regression.css
More file actions
61 lines (54 loc) · 1.48 KB
/
magnetic-regression.css
File metadata and controls
61 lines (54 loc) · 1.48 KB
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
/* General text styling */
body {
font-family: 'Avenir', sans-serif;
color: rgba(0, 31, 63, 0.8);
line-height: 1.5;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
color: rgba(0, 31, 63, 0.9);
font-size: 2em;
margin-top: 40px;
}
p {
font-size: 1em;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 15px;
}
/* Content wrapper to center and limit text width */
.content-wrapper {
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}
/* Tableau visualization container */
.tableau-container {
display: flex;
justify-content: center; /* Ensures the container centers its content */
align-items: center;
margin: 40px auto;
padding: 0 20px;
width: 100%;
}
/* Make the Tableau placeholder centered and fill more space */
.tableauPlaceholder {
width: 100%; /* Ensure it takes up the full width of the container */
max-width: 1200px; /* Set a max width to prevent it from being too wide */
height: 900px; /* Increased height for a larger visualization */
display: flex;
justify-content: center; /* Ensure content inside the placeholder is centered */
}
/* Ensure the Tableau visualization object takes the full width */
.tableauViz {
width: 100%; /* Make the object take full width */
height: 100%; /* Full height as well */
}
/* Paragraph styling for after-visualization section */
#after-visualization p {
font-size: 1em;
line-height: 1.6;
color: rgba(0, 31, 63, 0.85);
margin-bottom: 20px;
}