2022-11-06 22:58:22 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Nunito';
|
2022-11-07 01:15:03 +01:00
|
|
|
src:
|
|
|
|
url('../font/Nunito-Regular.woff2') format('woff2'),
|
|
|
|
url('../font/Nunito-Regular.woff') format('woff'),
|
|
|
|
url('../font/Nunito-Regular.ttf') format('truetype');
|
2022-11-06 22:58:22 +01:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-display: swap;
|
|
|
|
}
|
|
|
|
|
2023-09-09 08:47:26 +02:00
|
|
|
/* Trick which changes nothing visually but makes the footnote anchors,
|
|
|
|
superscript backlinks and headings anchor virtually lower.
|
2023-09-08 12:42:45 +02:00
|
|
|
Otherwise the fixed navbar is just above the footnote link when going
|
|
|
|
back from the bottom. That way, either footnotes or anchors are in
|
|
|
|
the middle of the page, making navigation easier */
|
2023-07-04 15:39:49 +02:00
|
|
|
sup[id*=fn] {
|
2023-09-09 08:47:26 +02:00
|
|
|
padding-top: 20% !important;
|
|
|
|
margin-top: -20% !important;
|
2023-07-04 15:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
li[id*=fn] {
|
2023-09-09 08:47:26 +02:00
|
|
|
padding-top: 15% !important;
|
|
|
|
margin-top: -15% !important;
|
2023-07-04 15:39:49 +02:00
|
|
|
}
|
|
|
|
|
2023-09-08 12:42:45 +02:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
padding-top: 10% !important;
|
|
|
|
margin-top: -10% !important;
|
|
|
|
}
|
|
|
|
|
2022-11-07 01:15:03 +01:00
|
|
|
/* Useful to force cards to have the same height */
|
2021-05-23 01:42:17 +02:00
|
|
|
.has-equal-height {
|
2022-11-07 01:15:03 +01:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-05-23 01:42:17 +02:00
|
|
|
}
|
2021-11-14 23:41:41 +01:00
|
|
|
|
2023-08-09 23:09:34 +02:00
|
|
|
/* Justify all content but not titles nor figure captions */
|
|
|
|
p:not(.title, .subtitle, figcaption p) {
|
2021-11-14 23:41:41 +01:00
|
|
|
text-align: justify;
|
2022-11-06 22:58:22 +01:00
|
|
|
}
|
|
|
|
|
2023-08-10 14:40:43 +02:00
|
|
|
/* Used only in page header, add transparency */
|
|
|
|
.box {
|
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
2023-08-10 15:22:13 +02:00
|
|
|
/* Used to disable click on incoming posts in thematic series */
|
|
|
|
a.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2022-11-07 01:15:03 +01:00
|
|
|
/* New font is "smaller" in feeling */
|
2022-11-06 22:58:22 +01:00
|
|
|
.navbar-dropdown {
|
|
|
|
font-size: 1rem;
|
2022-11-15 00:08:14 +01:00
|
|
|
}
|
|
|
|
|
2023-08-09 21:08:28 +02:00
|
|
|
figcaption h4, figcaption p {
|
2022-11-15 00:08:14 +01:00
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 1rem !important;
|
2022-11-18 01:18:06 +01:00
|
|
|
font-weight: 400 !important;
|
2023-07-04 17:20:03 +02:00
|
|
|
font-style: normal;
|
|
|
|
line-height: 1.5 !important;
|
2023-08-09 23:09:34 +02:00
|
|
|
color: dimgray;
|
2022-11-15 00:08:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
figure img {
|
|
|
|
filter: drop-shadow(4px 4px 5px grey)
|
2023-07-03 16:27:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu-label {
|
|
|
|
text-justify: none;
|
2023-07-04 13:02:28 +02:00
|
|
|
}
|
|
|
|
|
2023-09-09 11:25:34 +02:00
|
|
|
a.title {
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2023-07-04 13:02:28 +02:00
|
|
|
/* Workaround for horizontal scrollbar,
|
|
|
|
probably because I'm messing with containers,
|
|
|
|
sections and columns, but I do not understand
|
|
|
|
CSS enough to fix it properly.
|
|
|
|
See https://github.com/jgthms/bulma/issues/449 */
|
|
|
|
body {
|
|
|
|
overflow-x: hidden;
|
2023-08-21 16:38:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.content figure:not(:last-child) {
|
|
|
|
margin-bottom: 1em !important;
|
2023-09-02 18:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Let links have a color in hero contents
|
|
|
|
so visitors can see them */
|
|
|
|
.hero .subtitle a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #dff5fb !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero a:hover {
|
|
|
|
text-decoration: underline;
|
2022-11-05 23:12:24 +01:00
|
|
|
}
|