Go back left arrow

This commit is contained in:
Imperator 2022-10-10 01:20:00 +02:00
parent 87a331265c
commit da7fd24e1d
4 changed files with 709 additions and 706 deletions

View File

@ -54,6 +54,7 @@ elseif (isset($_GET['movie'])) {
</head>
<body>
<div class="navbar">
<i class="fa fa-arrow-left fa-2x" aria-hidden="true" title="Vue en liste" onclick="goBack()"></i>
<a href=".">Films</a>
<a href="#anime">Animés</a>
<input id="search" type="text" name="search" placeholder="Recherche">
@ -95,8 +96,6 @@ if (isset($movie_detail)):
<?php
endif;
?>
<br>
<button id="back" onclick="goBack()">Go Back</button>
<script>

View File

@ -173,12 +173,16 @@ body {
top: 0;
left: 0;
z-index: 999;
padding: 5px 60px;
padding: 5px 60px 5px 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar > .fa-arrow-left {
margin-right: 20px;
}
.navbar > * {
font-size: 17px;
}