aboutsummaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorADRN <adrien@luxeylab.net>2024-08-30 11:24:51 +0200
committerADRN <adrien@luxeylab.net>2024-08-30 17:14:39 +0200
commit4ce9fe785cf7e1e6d82a0cc28747493b2ef228ca (patch)
tree5eaaf840c1fedffe4de9554a34f77a25de6264ac /static/css
parent52bebd6c75b05d6cbd17868fb64897a2905d3cf2 (diff)
downloadsite-4ce9fe785cf7e1e6d82a0cc28747493b2ef228ca.tar.gz
site-4ce9fe785cf7e1e6d82a0cc28747493b2ef228ca.zip
premier essai
Diffstat (limited to 'static/css')
-rw-r--r--static/css/layout.css21
1 files changed, 20 insertions, 1 deletions
diff --git a/static/css/layout.css b/static/css/layout.css
index 9a4d6a5..4be9820 100644
--- a/static/css/layout.css
+++ b/static/css/layout.css
@@ -118,6 +118,25 @@ div#container {
header {
grid-area: header-start / main-col-sep 1 / header-end / main-col-sep 12;
z-index: 1; /* Pour le mettre au dessus de l'illustration jardin et que l'on puisse sélectionner son contenu */
+ display: flex;
+ flex-flow: row nowrap;
+ justify-content: space-between;
+}
+
+/* -> boutons thème et pause */
+#toolbar {
+ margin-right: var(--big_margin);
+}
+#toolbar > a {
+ text-decoration: none;
+}
+
+#toolbar > a:hover, #toolbar > a:active {
+ text-decoration: underline;
+}
+
+#toolbar .hidden {
+ display: none;
}
/* PIED DE PAGE */
@@ -251,7 +270,7 @@ pre.center > a {
div#container, nav#menu, body {
background-color: var(--night-background);
}
- p, pre, ul, li, a, a:hover, h1, h2, footer, nav {
+ p, pre, ul, li, a, a:hover, h1, h2, header, footer, nav {
color: var(--txt-night);
}
.highlight {