diff --git a/html/index.php b/html/index.php index 7084adee..42e7c49d 100644 --- a/html/index.php +++ b/html/index.php @@ -16,7 +16,7 @@ require "../include/functions.php";
diff --git a/html/journal.php b/html/journal.php index 0b939820..724e894b 100644 --- a/html/journal.php +++ b/html/journal.php @@ -21,7 +21,7 @@ if (filter_var($_GET['article'], FILTER_VALIDATE_INT)) {
@@ -58,7 +58,7 @@ if (filter_var($_GET['article'], FILTER_VALIDATE_INT)) { $req = $bdd->prepare("SELECT ID, titre, date, auteur FROM articles ORDER BY date DESC"); $req->execute(); $resultat = $req->fetchAll(PDO::FETCH_ASSOC); - + $date = new Datetime($row['date']); if ($resultat) { diff --git a/html/login.php b/html/login.php index 3c9df379..34d3b81a 100644 --- a/html/login.php +++ b/html/login.php @@ -45,7 +45,7 @@ if(isset($_POST['username']) && isset($_POST['password'])) {
diff --git a/html/src/css/style.css b/html/src/css/style.css index d84c28cd..184886e9 100644 --- a/html/src/css/style.css +++ b/html/src/css/style.css @@ -46,8 +46,6 @@ a { } a:hover { - background-color: var(--dark-background); - border-radius: 10px; box-shadow: 0 0 15px rgba(255, 255, 255, 0.322); } @@ -72,8 +70,8 @@ a:hover { border-radius: 3.5em; } -.athena:hover { - box-shadow: 0 0 15px rgba(255, 255, 255, 0.322); +.athena-container { + border-radius: 3.5em; } .main-title { diff --git a/html/upload.php b/html/upload.php index 46ef0921..e0c0218e 100644 --- a/html/upload.php +++ b/html/upload.php @@ -46,7 +46,7 @@ if(isset($_POST['titre']) && isset($_FILES['file'])) {