Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Netflox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Josep Maria Dalmau i Vila
Netflox
Merge requests
!2
Fix layout.php
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Fix layout.php
Fix_footer.php
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Carlos Terrero Orpí
requested to merge
Fix_footer.php
into
main
4 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Fix the layout for the general views.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
08221232
1 commit,
4 months ago
1 file
+
90
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
resources/views/
footer
.blade.php
→
resources/views/
layouts/netflox
.blade.php
+
90
−
0
View file @ 08221232
Edit in single-file editor
Open in Web IDE
Show full file
<!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"
>
©
{{ 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