Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
makura-2025
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
Raj Shah
makura-2025
Commits
e1a850ce
Commit
e1a850ce
authored
Feb 07, 2025
by
jhukal9@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the home page fixes from frontend
parent
7e051e19
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
111 additions
and
34 deletions
+111
-34
_base.scss
dev/sass/base/_base.scss
+2
-1
_custom_base.scss
dev/sass/base/_custom_base.scss
+23
-2
_footer.scss
dev/sass/base/_footer.scss
+3
-0
_makura-new.scss
dev/sass/base/_makura-new.scss
+29
-27
_about.scss
dev/sass/pages/_about.scss
+9
-1
_index.scss
dev/sass/pages/_index.scss
+17
-2
_portfolio.scss
dev/sass/pages/_portfolio.scss
+6
-0
_responsive.scss
dev/sass/pages/_responsive.scss
+14
-1
_block-gallery.scss
dev/sass/pages/master-portfolio/_block-gallery.scss
+6
-0
_sticky-tab.scss
dev/sass/pages/master-portfolio/_sticky-tab.scss
+2
-0
No files found.
dev/sass/base/_base.scss
View file @
e1a850ce
...
...
@@ -1068,7 +1068,8 @@ ul {
transform
:
scale
(
1
.1
);
}
h3
{
h3
,
h6
{
color
:
$primary
;
}
}
...
...
dev/sass/base/_custom_base.scss
View file @
e1a850ce
...
...
@@ -495,6 +495,10 @@
.recent-card-wrapper
{
margin-bottom
:
4rem
!
important
;
// display: none;
svg
{
transition
:
all
0
.3s
ease-in-out
;
}
}
.load-more-content
{
&
.hide
{
...
...
@@ -521,7 +525,8 @@
font-weight
:
600
;
line-height
:
24px
;
letter-spacing
:
-0
.4px
;
&
.active
{
&
.active
,
&
:hover
{
color
:
#005aff
!
important
;
}
}
...
...
@@ -589,16 +594,27 @@
}
}
.recent-card-wrapper
{
// transition: all 0.3s ease-in-out;
// border-radius: 0 0 8px 8px;
&
:hover
{
// box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.1);
.bottom-text
{
h1
,
h2
,
h3
,
h4
,
h5
,
h6
{
h6
,
p
{
color
:
$primary
;
}
svg
{
transform
:
translate
(
2px
,
-2px
);
path
{
stroke
:
$primary
;
}
}
}
}
img
{
...
...
@@ -1082,6 +1098,11 @@
}
}
}
.sent-quote-btn-wrapper {
.action-button {
margin-right: 1rem !important;
}
}
}
// error message contact form 7
...
...
dev/sass/base/_footer.scss
View file @
e1a850ce
...
...
@@ -208,6 +208,9 @@
font-weight
:
400
;
line-height
:
180%
;
letter-spacing
:
-0
.4px
;
&
:hover
{
text-decoration
:
underline
;
}
}
}
}
...
...
dev/sass/base/_makura-new.scss
View file @
e1a850ce
...
...
@@ -3,6 +3,35 @@ footer {
z-index
:
1
;
}
.btn-primary
,
.btn-start-project-white
{
position
:
relative
;
z-index
:
1
;
overflow
:
hidden
;
&
:
:
before
{
content
:
""
;
position
:
absolute
;
inset
:
0
;
transform
:
translateX
(
-150%
);
opacity
:
0
;
visibility
:
hidden
;
background-color
:
$background-dark
;
transition
:
all
0
.25s
ease-in-out
;
z-index
:
-1
;
}
&
:hover
{
transform
:
translateY
(
0
);
border-color
:
$background-dark
;
&
:
:
before
{
transform
:
translateX
(
0
);
opacity
:
1
;
visibility
:
visible
;
}
}
}
.makura-new
{
h6
{
font-size
:
18px
!
important
;
...
...
@@ -42,33 +71,6 @@ footer {
text-underline-offset
:
2px
;
}
.btn-primary
{
position
:
relative
;
z-index
:
1
;
overflow
:
hidden
;
&
:
:
before
{
content
:
""
;
position
:
absolute
;
inset
:
0
;
transform
:
translateX
(
-150%
);
opacity
:
0
;
visibility
:
hidden
;
background-color
:
$background-dark
;
transition
:
all
0
.25s
ease-in-out
;
z-index
:
-1
;
}
&
:hover
{
transform
:
translateY
(
0
);
&
:
:
before
{
transform
:
translateX
(
0
);
opacity
:
1
;
visibility
:
visible
;
}
}
}
.sm-text
{
font-size
:
1
.125rem
!
important
;
line-height
:
22px
;
...
...
dev/sass/pages/_about.scss
View file @
e1a850ce
...
...
@@ -3,9 +3,17 @@
&
.background-dark
{
background
:
#005aff
!
important
;
}
.btn-start-project
,
.btn-start-project
{
background-color
:
#121526
;
&
:hover
{
color
:
$primary
!
important
;
border-color
:
$white
;
&
:
:
before
{
background-color
:
$white
;
}
}
}
.left-text-wrapper
{
&
:
:
before
{
...
...
dev/sass/pages/_index.scss
View file @
e1a850ce
...
...
@@ -19,11 +19,18 @@
.whats-app-icon-wrapper
{
position
:
fixed
;
bottom
:
80px
;
right
:
20px
;
padding
:
10px
;
right
:
2%
;
max-width
:
51px
;
// padding: 10px;
border-radius
:
5px
;
text-decoration
:
none
;
z-index
:
10
;
a
{
display
:
block
;
svg
{
max-width
:
100%
;
}
}
}
.whats-app-icon-wrapper
:hover
.tooltip-wrapper
{
...
...
@@ -285,6 +292,14 @@ input[type="number"] {
width
:
fit-content
;
background
:
white
;
color
:
#000
!
important
;
&
:hover
{
color
:
$white
!
important
;
// &::before {
// background-color: $primary;
// }
}
}
}
}
...
...
dev/sass/pages/_portfolio.scss
View file @
e1a850ce
...
...
@@ -48,6 +48,7 @@
line-height
:
32px
;
font-weight
:
600
;
letter-spacing
:
-0
.5px
;
color
:
$white
;
svg
{
max-width
:
16px
;
...
...
@@ -348,6 +349,11 @@
width
:
100%
;
object-fit
:
contain
;
}
.item
{
width
:
48px
;
height
:
48px
;
}
}
//TECHNOLOGY-USED-SECTION
...
...
dev/sass/pages/_responsive.scss
View file @
e1a850ce
...
...
@@ -98,12 +98,25 @@
.HOME.TOP-BANNER-SECTION
img
{
height
:
auto
;
width
:
20rem
;
//
width: 20rem;
object-fit
:
contain
;
display
:
flex
;
margin
:
auto
;
}
.modal-steps-wrapper
{
.step-text
{
h1
,
h2
,
h3
,
h4
,
h5
,
h6
{
line-height
:
25px
!
important
;
}
}
}
.TOP-BANNER-SECTION
{
padding
:
0
0
1rem
0
!
important
;
.nav-pills
{
...
...
dev/sass/pages/master-portfolio/_block-gallery.scss
View file @
e1a850ce
.block-gallery
{
.section-title
{
&
:has
(
.title
)
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
}
.slider-controller
{
gap
:
12px
;
...
...
@@ -28,4 +30,8 @@
}
}
}
.owl-stage
{
padding-left
:
0
!
important
;
}
}
dev/sass/pages/master-portfolio/_sticky-tab.scss
View file @
e1a850ce
...
...
@@ -5,11 +5,13 @@
z-index
:
9
;
.st-content
{
overflow
:
auto
;
ul
{
li
{
a
{
display
:
inline-block
;
padding
:
8px
16px
;
text-wrap
:
nowrap
;
}
&
:hover
,
...
...
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