feat: ajoute une petite pastille copyright
parent
16b870ce21
commit
5b87e39063
|
@ -15,9 +15,7 @@ const { title } = Astro.props;
|
||||||
<meta name="generator" content={Astro.generator} />
|
<meta name="generator" content={Astro.generator} />
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
</head>
|
</head>
|
||||||
<body style="
|
<body>
|
||||||
background: url('/logo_les-particules_orange.jpg') top no-repeat;
|
|
||||||
height:fit-content; min-height: 100% ">
|
|
||||||
<main>
|
<main>
|
||||||
<h1>
|
<h1>
|
||||||
<a href="/">
|
<a href="/">
|
||||||
|
@ -27,6 +25,9 @@ const { title } = Astro.props;
|
||||||
</h1>
|
</h1>
|
||||||
<slot />
|
<slot />
|
||||||
</main>
|
</main>
|
||||||
|
<footer>
|
||||||
|
© Les Particules 2024
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<style is:global>
|
<style is:global>
|
||||||
|
@ -38,11 +39,20 @@ const { title } = Astro.props;
|
||||||
font-family: system-ui, sans-serif;
|
font-family: system-ui, sans-serif;
|
||||||
background-color: #F6F6F6;
|
background-color: #F6F6F6;
|
||||||
}
|
}
|
||||||
html, body {
|
html {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding:0;
|
padding: 0;
|
||||||
margin:0;
|
margin: 0;
|
||||||
}
|
background: url('/logo_les-particules_orange.jpg') top no-repeat white;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin: 0;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
h1 a {
|
h1 a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -50,11 +60,21 @@ const { title } = Astro.props;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
margin: auto;
|
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
max-width: 80ch;
|
max-width: 80ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer{
|
||||||
|
background: white;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 0.4em;
|
||||||
|
border: black 0.15em solid;
|
||||||
|
box-shadow: 0.2em 0.2em 1em black;
|
||||||
|
padding: 0.2em 0.8em;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
|
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
|
||||||
Bitstream Vera Sans Mono, Courier New, monospace;
|
Bitstream Vera Sans Mono, Courier New, monospace;
|
||||||
|
|
Loading…
Reference in New Issue