-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagnetic-regression.css
103 lines (91 loc) · 2.37 KB
/
magnetic-regression.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* General Body Styling */
body {
font-family: 'Avenir', sans-serif;
font-size: 17px;
line-height: 1.6;
color: rgba(0, 31, 63, 0.85);
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
/* Header Styling */
header {
text-align: center;
padding: 40px 20px 20px 20px;
color: #001f3f;
background-color: transparent;
}
h1 {
font-size: 2.5em;
margin: 0;
font-weight: 400;
}
h2 {
font-size: 2em;
margin: 0;
font-weight: 400;
}
/* Paragraph Styling */
p {
margin: 0 0 15px 0; /* Adds consistent spacing between paragraphs */
padding: 0;
line-height: 1.8; /* Maintains readability */
}
/* Content Wrapper */
.content-wrapper {
max-width: 900px;
margin: 60px auto;
padding: 20px;
text-align: justify;
}
#viz1662602775300 {
margin: 40px 0; /* Adds space above and below the visualization */
}
/* Footer Styling */
footer {
text-align: center;
padding: 20px;
background-color: #f1f1f1;
color: #001f3f;
font-size: 0.9em;
}
footer p {
margin: 0;
}
/* Link Styling */
a {
color: rgba(0, 31, 63, 0.85);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #1e90ff;
}
.navigation-buttons {
text-align: center;
margin: 30px 0; /* Adjust spacing around the button container */
}
.navigation-buttons button,
.navigation-buttons a button {
background-color: transparent; /* Transparent background */
color: #001f3f; /* Navy text */
border: 2px solid #001f3f; /* Navy border with crisp lines */
border-radius: 50%; /* Makes buttons circular */
padding: 0; /* Remove default padding */
width: 70px; /* Set width for circle */
height: 70px; /* Set height for circle */
font-size: 16px; /* Adjust font size */
font-family: 'Avenir', Arial, sans-serif; /* Keep the Avenir font */
cursor: pointer;
text-align: center; /* Center the text horizontally */
line-height: 70px; /* Perfectly vertically center the text */
transition: all 0.3s ease; /* Smooth transition for hover */
margin: 0 15px; /* Add horizontal spacing between buttons */
}
/* Hover state for buttons */
.navigation-buttons button:hover,
.navigation-buttons a button:hover {
background-color: #1e90ff; /* Light blue background on hover */
color: white; /* White text on hover */
border-color: #1e90ff; /* Change border to match background */
}