Skip to content
Snippets Groups Projects

Fix layout.php

Merged Carlos Terrero Orpí requested to merge Fix_footer.php into main
1 file
+ 90
0
Compare changes
  • Side-by-side
  • Inline
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
body {
background-color: #1a1a1a;
color: #fff;
}
.movie-card {
position: relative;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: transform 0.3s, box-shadow 0.3s;
}
.movie-card img {
width: 100%;
height: auto;
}
.movie-card .overlay {
position: absolute;
bottom: -100%;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.8);
padding: 20px;
transition: bottom 0.3s;
}
.movie-card:hover .overlay {
bottom: 0;
}
.movie-card:hover {
transform: scale(1.05);
}
.movie-card h3 {
margin: 0;
font-size: 1.2em;
}
.movie-card p {
margin: 10px 0 0;
font-size: 0.9em;
color: #ccc;
}
</style>
</head>
<body>
@yield('content')
<footer class="bg-dark text-white">
<div class="container">
<div class="row">
@@ -27,5 +85,6 @@
<p class="text-center mt-3">&copy; {{ date('Y') }} Your Company Name. All rights reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>
Loading