Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
palaniapp_demo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hussain Mohamed
palaniapp_demo
Commits
623698fa
Commit
623698fa
authored
Jan 02, 2026
by
Hussain Mohamed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chnages
parent
0a74ca97
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
4 deletions
+53
-4
main.css
public/assets/css/main.css
+38
-2
contact.blade.php
resources/views/contact.blade.php
+13
-0
product_detail.blade.php
resources/views/product_detail.blade.php
+2
-2
No files found.
public/assets/css/main.css
View file @
623698fa
...
...
@@ -62,13 +62,13 @@ body {
}
a
{
color
:
var
(
--accent-color
)
;
color
:
#282828
;
text-decoration
:
none
;
transition
:
0.3s
;
}
a
:hover
{
color
:
color-mix
(
in
srgb
,
var
(
--accent-color
),
transparent
25%
)
;
color
:
#282828
;
text-decoration
:
none
;
}
...
...
@@ -4463,6 +4463,42 @@ section,
width
:
150px
;
}
.bottom-btn
{
padding
:
80px
0
;
text-align
:
center
;
/* Center the button horizontally */
background-color
:
#3F3D2F
;
}
.bottom-btn
.btn-submit
{
margin
:
auto
;
padding
:
20px
40px
;
display
:
inline-flex
;
font-size
:
20px
;
font-weight
:
500
;
background-color
:
transparent
;
border
:
2px
solid
#FFFFFF
;
/* White border like the image */
color
:
#FFFFFF
;
/* White text color */
transition
:
background-color
0.3s
ease
,
color
0.3s
ease
;
/* Smooth transition for hover effects */
cursor
:
pointer
;
}
.bottom-btn
.btn-submit
i
{
font-size
:
25px
;
margin-left
:
1px
;
opacity
:
0
;
/* Hide arrow by default */
transition
:
opacity
0.3s
ease
,
transform
0.3s
ease
;
}
.bottom-btn
.btn-submit
:hover
i
{
opacity
:
1
;
/* Show the arrow */
transform
:
translateX
(
5px
);
/* Move the arrow slightly to the right */
}
.bottom-btn
.btn-submit
i
{
margin-left
:
10px
;
/* Space between the text and the icon */
transition
:
transform
0.3s
ease
;
/* Smooth transition for the icon */
}
.bottom-btn
.btn-submit
:hover
i
{
transform
:
translateX
(
5px
);
/* Slightly move the icon to the right */
}
.btnsubmit
{
background-color
:
#038c7f
;
border
:
2px
solid
#038c7f
;
...
...
resources/views/contact.blade.php
View file @
623698fa
...
...
@@ -131,4 +131,16 @@
</div>
</div>
</section>
<section
class=
"bottom-btn"
>
<div
class=
"row"
>
<div
class=
"col-lg-12"
>
<div
class=
"d-grid"
>
<a
href=
"
<?=
route
(
'career'
)
?>
"
class=
"btn-submit"
>
Lets work together
<i
class=
"bi bi-arrow-right"
></i>
</a>
</div>
</div>
</div>
</section>
@endsection
\ No newline at end of file
resources/views/product_detail.blade.php
View file @
623698fa
...
...
@@ -17,8 +17,8 @@
<div
class=
"col-lg-5"
>
<nav
class=
"breadcrumbs d-flex"
>
<ol>
<li><a
href=
"
index.html
"
>
Home
</a></li>
<li><a
href=
"
index.html
"
>
<?=
$record
->
category
->
category_name
?>
</a></li>
<li><a
href=
"
<?=
route
(
'/'
)
?>
"
>
Home
</a></li>
<li><a
href=
"
#
"
>
<?=
$record
->
category
->
category_name
?>
</a></li>
<li><a
href=
"
<?=
route
(
'products'
,
[
$record
->
product_slug
])
?>
"
>
<?=
ucwords
(
$record
->
product_name
)
?>
</a></li>
</ol>
</nav>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment