summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcellus <msimon_fr@hotmail.com>2023-07-31 18:34:51 +0200
committermarcellus <msimon_fr@hotmail.com>2023-07-31 18:34:51 +0200
commit8364f786783ffe93d72d6803af9f918bdc4ee0cf (patch)
treefdafdfe8afab7169d3f16ac90d36f5aac3cb05b7
parenteb642afd922cf1edd0dc977e1be49ee45c1d1a6f (diff)
fix: final fixes before (lol no) deployment
-rw-r--r--dates.html14
-rw-r--r--membres.html7
-rw-r--r--style.css14
3 files changed, 21 insertions, 14 deletions
diff --git a/dates.html b/dates.html
index 4e5abf4..b00b201 100644
--- a/dates.html
+++ b/dates.html
@@ -6,19 +6,17 @@
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
+ <nav>
+ <a href="index.html">Retour</a>
+ <a href="membres.html">Le groupe</a>
+ <a href="#">Nos dates</a>
+ </nav>
<div class="content">
<div class="date">
<p class="date-desc">Rencontres musicales</p>
<div>
<hr>
- <p>--------<br>€€</p>
- </div>
- </div>
- <div class="date">
- <p class="date-desc">Concert privé<br>St Martin Je Sais Plus Quoi</p>
- <div>
- <hr>
- <p>28-08-23<br>Entrée privée</p>
+ <p>19 août 2023<br>Entrée libre</p>
</div>
</div>
</div>
diff --git a/membres.html b/membres.html
index 025715a..621c819 100644
--- a/membres.html
+++ b/membres.html
@@ -7,10 +7,9 @@
</head>
<body>
<nav>
- <a href="index.html">Retour<img src="https://momg.neocities.org/gifs/i-47092.gif" ></a>
- <a href="#">Le groupe<img
- src="https://momg.neocities.org/gifs/i-8483.gif"></a>
- <a href="dates.html">Les dates<img src="https://momg.neocities.org/gifs/i-28896.gif"></a>
+ <a href="index.html">Retour</a>
+ <a href="#">Le groupe</a>
+ <a href="dates.html">Nos dates</a>
</nav>
<div class="content">
<h1>Membres du groupe</h1>
diff --git a/style.css b/style.css
index 3f04ec4..3172af1 100644
--- a/style.css
+++ b/style.css
@@ -1,3 +1,7 @@
+:root{
+ --shadow-size: 8px;
+}
+
body{
display: flex;
background: url(img/bg.jpg) no-repeat fixed;
@@ -24,8 +28,14 @@ nav{
left: 0;
}
-nav img{
- width: 100%;
+nav a{
+ text-shadow: 1px 1px var(--shadow-size) white, -1px -1px var(--shadow-size) white, -1px 1px var(--shadow-size) white, 1px -1px var(--shadow-size) white;
+ transition-property: var(--shadow-size);
+ transition-duration: 1s;
+}
+
+nav a:hover{
+ --shadow-size: 15px;
}
.content{