Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hover effects #82

Merged
merged 2 commits into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/Components/MainContainer.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@
.maincontainer .left .banner .textContainer .bid p span {
display: block;
color: #0db5cb;
transition: color 0.3 sec;
}
.maincontainer .left .banner .textContainer .bid p span :hover{

color: white;
}

.maincontainer .left .cards {
Expand Down Expand Up @@ -187,10 +192,18 @@
justify-content: space-between;
align-items: center;
padding: 5px 20px;
transition: background-color 0.3;
}
.maincontainer .left .cards main .card_main .card_main_button:hover {
background-color:#e9e9ec
}

.maincontainer .left .cards main .card_main .card_main_button .btn {
font-size: 10px !important;
transition: background-color 0.3;
}
.maincontainer .left .cards main .card_main .card_main_button .btn :hover{
background-color: #d34eb6;
}

.maincontainer .right {
Expand Down Expand Up @@ -292,7 +305,11 @@
.maincontainer .right .bottom_card .topSeller .button {
margin-left: auto;
font-size: 10px;
transition: text-decoration-color 0.3 sec ;
}
.maincontainer .right .bottom_card .topSeller .button :hover{
text-decoration-color: #f1f1f1;
}
.topSeller a{
cursor: pointer;
}
Expand All @@ -315,6 +332,10 @@

.maincontainer .left .cards .filters .filter_buttons {
display: none;
transition: background-color 0.3 sec;
}
.maincontainer .left .cards .filters .filter_buttons :hover{
background-color: white;
}

.maincontainer .right {
Expand Down Expand Up @@ -359,5 +380,10 @@

.maincontainer .right .bottom_card .topSeller .button {
font-size: 8px;
transition: background-color 0.3 sec ;
}
.maincontainer .right .bottom_card .topSeller .button :hover{
background-color: #e9e9ec;
}

}
14 changes: 14 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ code {
inset -5px -10px 10px #0db5cb;
margin-right: 10px;
cursor: pointer;
transition: background-color 0.3 sec;
}

.button:hover{
background-color: #fff;
border-color: #b21783;

}

.button2 {
Expand All @@ -42,4 +49,11 @@ code {
padding: 5px 15px;
border-radius: 10px;
margin: 0px 5px;
transition: background-color 0.3 sec;
}

.button2:hover{
background-color: #fff;
border-color: #b21783;

}