mirror of
https://git.librezo.fr/Librezo/website.git
synced 2024-11-21 18:41:37 +01:00
mode sombre
This commit is contained in:
parent
98f519215a
commit
7db78bd2b3
@ -71,6 +71,8 @@ leaflet = 1
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
## On est là
|
||||||
|
|
||||||
{% map() %}
|
{% map() %}
|
||||||
[42.6998, 9.4518], // Bastia
|
[42.6998, 9.4518], // Bastia
|
||||||
[44.4742, 1.8296], // Cajarc
|
[44.4742, 1.8296], // Cajarc
|
||||||
|
@ -30,10 +30,6 @@ html, body {
|
|||||||
font-family: LunaSans;
|
font-family: LunaSans;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
|
||||||
background: radial-gradient(circle at 100%, rgba(2, 148, 217, 0.2) 20%, white);
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
main {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
@ -162,3 +158,24 @@ h3 {
|
|||||||
height: 600px;
|
height: 600px;
|
||||||
max-height: calc(100vh - 64px);
|
max-height: calc(100vh - 64px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light), (prefers-color-scheme: no-preference) {
|
||||||
|
html {
|
||||||
|
background: radial-gradient(circle at 100%, rgba(2, 148, 217, 0.2) 20%, white);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
html {
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#dev-warning {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cities {
|
||||||
|
color: $grey2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -59,3 +59,9 @@
|
|||||||
color: $grey1;
|
color: $grey1;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.client_box-sign {
|
||||||
|
color: $grey2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
$blue: #0294d9;
|
$blue: #0294d9;
|
||||||
$violet: #ac44ff;
|
$violet: #ac44ff;
|
||||||
$grey1: #444;
|
$grey1: #444;
|
||||||
|
$grey2: #bbb;
|
||||||
|
|
||||||
$grad1_3tr: rgba(2, 148, 217, 0.2);
|
$grad1_3tr: rgba(2, 148, 217, 0.2);
|
||||||
$grad2_3tr: rgba(87, 108, 236, 0.2);
|
$grad2_3tr: rgba(87, 108, 236, 0.2);
|
||||||
|
@ -37,3 +37,9 @@ header {
|
|||||||
text-shadow: 1px 2px 1px $violet;
|
text-shadow: 1px 2px 1px $violet;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
#header-menu a {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -68,3 +68,9 @@
|
|||||||
padding-bottom: 14px;
|
padding-bottom: 14px;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.service_box-link, .service_box-link:visited {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
BIN
static/img/librezo-little-white.png
Normal file
BIN
static/img/librezo-little-white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
@ -19,7 +19,14 @@
|
|||||||
<a href="#" onclick="document.getElementById('dev-warning').remove()">fermer</a>
|
<a href="#" onclick="document.getElementById('dev-warning').remove()">fermer</a>
|
||||||
</div>
|
</div>
|
||||||
<header>
|
<header>
|
||||||
<a href="/"><img id="header-logo" src="/img/librezo-little-black.png" alt="Logo Librezo" aria-hidden/><h1 class="sr-only">Librezo</h1></a>
|
<a href="/">
|
||||||
|
<picture>
|
||||||
|
<source srcset="/img/librezo-little-white.png" media="(prefers-color-scheme: dark)" />
|
||||||
|
<source srcset="/img/librezo-little-black.png" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
|
||||||
|
<img decoding="async" id="header-logo" src="/img/librezo-little-black.png" alt="Librezo" aria-hidden/>
|
||||||
|
</picture>
|
||||||
|
<h1 class="sr-only">Librezo</h1>
|
||||||
|
</a>
|
||||||
<nav id="header-menu">
|
<nav id="header-menu">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/fonctionnement">Fonctionnement</a></li>
|
<li><a href="/fonctionnement">Fonctionnement</a></li>
|
||||||
|
Loading…
Reference in New Issue
Block a user