Skip to content

Commit

Permalink
Merge pull request #409 from sainKunal/add
Browse files Browse the repository at this point in the history
# Issue Resolved: Improvement of "View All Courses" Tab
  • Loading branch information
PriyaGhosal authored Oct 11, 2024
2 parents 4bd3194 + f8ac47c commit 7fbc15b
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ body.nav-active {

.btn {
background-color: #1a1a1a;
/* border-radius: 20px; */
}

:is(.btn-primary, .btn-secondary):is(:hover, :focus-visible) {
Expand Down Expand Up @@ -1416,8 +1417,19 @@ button:hover {
font-size: 1.8rem;
border-radius: 10px;
color: #fff;
width: 75%;
border: 2px solid transparent;
border-radius: 5px;
transition: border 0.3s ease, transform 0.3s ease;
text-align: center;

}
.btn:hover{
border: 2px solid white;
transform: scale(1.05);
/* background-color: whitesmoke;
}

/**
* HEADER
*/
Expand Down Expand Up @@ -1757,7 +1769,8 @@ button:hover {
justify-content: space-between;
gap: 8px;

background: var(--light-gray);
/* background: #FF8086; */
background-color: var(--light-coral);
border-radius: 50px;
position: relative;
}
Expand Down Expand Up @@ -1795,9 +1808,11 @@ button:hover {
transform: translateY(0);
}
.searchInput::placeholder {
color: var(--light-coral);

color:rgba(0, 0, 0, 0.4);
}
.searchInput {
margin-left: 10px;
border: none;
background: none;
outline: none;
Expand Down

0 comments on commit 7fbc15b

Please sign in to comment.