<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --text-color: #59493f;
  --highlight-color: #e85127;
  --background-color: white;
}

/* Global style */

html {
  color: var(--text-color);
  background: var(--background-color);
  font-family: "Truculenta", sans-serif;
}

body {
  margin: 0px auto 0px auto;
  padding: 0px 5px 0px 5px;
  max-width: 900px;
  text-align: center;
}

a {
  text-decoration: none;
  color: var(--highlight-color);
}

/* Utility classes */

.highlight {
  color: var(--highlight-color);
}

.outline {
  outline: 1px solid #ccc;
}

.padded-outline {
  outline: 1px #ccc solid;
  padding: 5px;
}

img.padded-outline {
  max-width: 95%;
}

p.description {
  margin: 0px auto 5ex auto;
}

/* Main header */

body &gt; header {
  margin: 2ex 0px 5ex 0px;
}

body &gt; header div.title {
  display: inline-block;
  background: no-repeat url("/theme/logo.png") right;
  background-size: auto 110px;
  width: 270px;
  text-align: left;
}

body &gt; header h1 {
  line-height: 60px;
  margin: 20px 0px 0px 0px;
  font-weight: normal;
  font-size: 75px;
  text-transform: lowercase;
}

body &gt; header h2 {
  margin: 0px 0px 0px 4px;
  font-weight: normal;
  font-size: 38px;
  text-transform: lowercase;
}

nav.menu ul {
  margin-top: 5ex;
  padding: 0px 0px 0px 0px;
}

nav.menu li {
  display: inline;
  font-size: medium;
  margin: 0px 0em 0px 0em;
}

nav.menu li::after {
  content: "\00A0â€¢\00A0"; /* \00A0 == &amp;nbsp; */
}

nav.menu li:last-child::after {
  content: "";
}

nav.menu li {
  font-size: large;
}

body &gt; header a {
  color: var(--text-color);
}

nav.menu a:hover {
  color: var(--highlight-color);
}

/* Navigation between pages and articles */

nav.article svg, nav.article svg, nav.page svg, nav.page svg {
  height: 4ex;
  fill: var(--highlight-color);
  vertical-align: text-bottom;
}

nav.page h1 {
  display: inline;
}

nav.article .previous, nav.page .previous {
  display: inline;
  margin: 0px 2em 0px 0em;
}

nav.article .next, nav.page .next {
  display: inline;
  margin: 0px 0em 0px 2em;
}

/* Content */

main &gt; header h1 {
  margin: auto auto 0ex auto;
}

main &gt; header h1 a {
  font-size: XX-large;
  font-weight: normal;
  color: var(--text-color);
}

main img {
  max-width: 100%;
  height: auto;
}

.card {
  margin: 0px 0px 0px 0px;
}

.card img {
  display: block;
  max-width: 100%;
}

figure.hover {
  position: relative;
}

figure.hover img {
  vertical-align: top;
  opacity: 1;
}

figure.hover figcaption {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  text-transform: uppercase;
  opacity: 0;
}

a figure.hover {
  color: var(--text-color);
}

figure.hover:hover img {
  opacity: 0.10;
}

figure.hover:hover figcaption {
  opacity: 1;
}

/* Footer */

body &gt; footer {
  font-size: small;
}

body &gt; footer hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

/* Page-specific styles */

h2.bibliographie {
  color: var(--highlight-color);
  font-size: medium;
  font-weight: normal;
}

.contact label { display: block; margin-bottom: 0.5ex; }
.contact input, .contact textarea {
  font-size: medium; margin-bottom: 1.5ex; width: 100%; }
.contact input[type="button"],
    .contact input[type="checkbox"], .contact input[type="submit"] {
  width: auto; }
.contact textarea { height: 10em;}
.contact__status.failure { color: red; }
.contact__status.success { color: green; }
</pre></body></html>