Added hover effects on buttons

pull/43175/head
Rituraj Dey 2023-09-23 13:40:58 +05:30
parent 9db9d35055
commit d00e01d8be
No known key found for this signature in database
GPG Key ID: 5B98BF9BC39906A4
1 changed files with 15 additions and 0 deletions

View File

@ -552,6 +552,12 @@ section#cncf {
padding: 20px 10px 20px 10px;
}
#desktopKCButton:hover{
background-color: #ffffff;
color: #3371e3;
transition: 150ms;
}
#desktopShowVideoButton {
position: relative;
font-size: 24px;
@ -571,6 +577,15 @@ section#cncf {
border-width: 10px 0 10px 20px;
border-color: transparent transparent transparent $blue;
}
&:hover::before {
border-color: transparent transparent transparent $dark-grey;
}
}
#desktopShowVideoButton:hover{
color: $dark-grey;
transition: 150ms;
}
#mobileShowVideoButton {