You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text-decoration-line: none; /* To eliminate underscore format of hyperlinks. */
98
+
}
99
+
96
100
/* Use of 'media queries' to define layouts according to specific screen resolutions: 'https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_media_queries/Using_media_queries#targeting_media_features'. */
97
101
@media (width > 0px) { /* Base design, as starting point: e.g. for desktop, although recommended to start with mobile, 1st: 'https://stackoverflow.com/questions/6370690/media-queries-how-to-target-desktop-tablet-and-mobile/20350990#20350990'. */
98
102
@@ -131,7 +135,6 @@ footer p {
131
135
132
136
.header-nav-left_aligned-links_container-link {
133
137
color:var(--colors_01);
134
-
text-decoration-line: none; /* To eliminate underscore format of hyperlinks. */
135
138
font-size:1.3em;
136
139
}
137
140
@@ -142,7 +145,7 @@ footer p {
142
145
}
143
146
144
147
.header-nav-links_container-link {
145
-
text-decoration-line: none;
148
+
color:var(--colors_fonts_muted);
146
149
}
147
150
148
151
.main-content {
@@ -181,7 +184,6 @@ footer p {
181
184
182
185
.main-content-tiles-logo_title_pair-title {
183
186
color:var(--colors_01);
184
-
text-decoration-line: none;
185
187
}
186
188
187
189
.main-content-pyscript_output_text {
@@ -192,10 +194,43 @@ footer p {
192
194
max-width: 750px;
193
195
} */
194
196
197
+
/* FOOTER: credits. */
198
+
195
199
.footer {
196
200
background-color:var(--colors_01);
197
-
color:var(--colors_background);
198
-
text-align: center;
199
201
padding:12px;
202
+
display: flex;
203
+
gap:16px; /* Separates sections: copyright and credits. */
204
+
justify-content: space-between; /* Distribute sections of copyrigth and credits, both to the opposites: 'https://css-tricks.com/snippets/css/a-guide-to-flexbox/#aa-justify-content'. */
205
+
align-items: center;
206
+
flex-wrap: wrap; /* When shrinking, wrap onto multiple lines; e.g. column stack, instead of staying on 1 line: 'https://css-tricks.com/snippets/css/a-guide-to-flexbox/#aa-flex-wrap'. */
207
+
color:var(--colors_background);
208
+
}
209
+
210
+
.footer-container_credits {
211
+
display: flex;
212
+
gap:16px; /* Separates credits items: developed by, github and email. */
213
+
align-items: center;
214
+
flex-wrap: wrap; /* When shrinking, wrap onto multiple lines; e.g. column stack, instead of staying on 1 line: 'https://css-tricks.com/snippets/css/a-guide-to-flexbox/#aa-flex-wrap'. */
200
215
}
216
+
217
+
.footer-container_credits-container_credits {
218
+
display: flex;
219
+
align-items: center;
220
+
gap:8px; /* Separates logo from text. */
221
+
}
222
+
223
+
footerdivdivsvg {
224
+
background-color:rgba(246,246,246,0.2); /* Same color as '--colors_02', but with transparency. */
225
+
border-radius:100%;
226
+
width:32px;
227
+
height:32px;
228
+
padding:4px; /* Inner padding; the greater the padding, the smaller the icon. */
0 commit comments