Pages Link Changes

This commit is contained in:
sujan
2024-08-29 13:47:40 +05:45
parent ecef568185
commit 373872f9db
4 changed files with 706 additions and 1180 deletions

View File

@ -14390,4 +14390,37 @@ img {
text-transform: uppercase;
overflow: hidden;
}
.apply-btn::before {
position: absolute;
bottom: 0;
left: 0;
width: 50%;
height: 0;
content: "";
background-color: #FF7236;
transition: all 0.4s ease-in-out;
border-radius: 0;
z-index: -1;
}
.apply-btn::after {
position: absolute;
top: 0;
right: 0;
width: 51%;
height: 0;
content: "";
background-color: #FF7236;
transition: all 0.4s ease-in-out;
border-radius: 0;
z-index: -1;
}
.apply-btn:hover::before {
height: 100%;
}
.apply-btn:hover::after {
height: 100%;
}
.apply-btn:hover {
color: #fff;
}
/*extra css*/