@@ -1,4 +1,4 @@
<!-- Simple button to come back to project list -->
-<div style="display: flex; justify-content: center">
+<div class="button-container">
- <a href="../projets.php" type="button" class="btn btn-outline-success btn-lg">Retour projets</a>
+ <a href="../projets.php" type="button" class="btn btn-outline-success btn-lg back-button">Retour projets</a>
</div>
@@ -0,0 +1,10 @@
+/* Style for back-to-projects component */
+.button-container {
+ display: flex;
+ justify-content: center;
+}
+
+.back-button {
+ border-color: #004D40;
+ color: #004D40;
@@ -41,6 +41,7 @@
<!-- Style sheet -->
<link href="/include/css/bootstrap.css" rel="stylesheet">
<link href="/include/css/custom/main.css" rel="stylesheet">
+ <link href="/include/css/custom/back-to-projects.css" rel="stylesheet">
<title><?php echo $title; ?> - Jovian Hersemeule</title>
</head>