diff --git a/assets/css/style.scss b/assets/css/style.scss index 09a271b..f855eab 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -3,39 +3,100 @@ } html { font-family: "Coelacanth", "Lucida Sans Unicode", Arial, Helvetica, sans-serif; - font-size: large; + font-size: x-large; } a { text-decoration: none; } -a.exposed { +a.exposed, span.exposed { font-weight: bold; font-size: 1.3em; } a:visited { } - -body { - max-width: 1200px; - @media (min-width: 1200px) { - margin: auto; - } -} - -header { - text-align: center; - h1 { - margin-bottom: 0; - } - nav { - margin: 1em; - } - nav > * { - padding: 0.5em; - } -} - .path { display: inline; } +body { + background-color: white; +} + +header { + margin-top: 1em; + padding-bottom: 2em; + padding-top: 1em; + background-color: #9f5470; + background-color: pink; + color: white; + a { + color: white; + } + a.exposed, span.exposed { + font-weight: bold; + font-size: 1.8em; + } + a:visited { + font-weight: bold; + } + div.title-bar { + display: flex; + align-items: center; + justify-content: space-between; + max-width: 1200px; + @media (min-width: 1200px) { + margin: auto; + } + img { + height: 88px; + } + * { + padding: 0.5em; + } + } + div.description { + display: inline; + font-style: italic; + font-size: smaller; + } + nav { + position: relative; + display: flex; + align-items: baseline; + justify-content: space-around; + max-width: 1200px; + padding-bottom: 6em; + span { + -webkit-animation: exposed 1s ease forwards; + } + span.exposed { + position: absolute; + top: 4rem; + } + @keyframes exposed { + from { position: relative; top: 0; } + to { position: absolute; top: 4rem; } + } + @media (min-width: 1200px) { + margin: auto; + } + } +} + +main { + max-width: 1200px; + @media (min-width: 1200px) { + margin-left: auto; + margin-right: auto; + } + background-color: white; + padding: 1em; + border-top-left-radius: 1em; + border-top-right-radius: 1em; + margin-top: -2em; + margin-left: 1em; + margin-right: 1em; + *:nth-child(1) { + margin-top: 0; + } +} diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 1c232e4..9ce6358 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,22 +1,30 @@ {{ $currentPage := . }}
-

- {{ with resources.Get "img/titre.png" }} +
+ {{ with resources.Get "img/titre-blanc.png" }} {{ else }} {{ .Site.Title }} {{ end }} -

- {{ with $.Site.Params.Description }} - {{ . }} - {{ end }} +
+ {{ with $.Site.Params.Description }} + {{ . }} + {{ end }} +
+