Search
 
SCRIPT & CODE EXAMPLE
 

CSS

change image color in bootstrap card on hover css

.card{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 14px 80px 18px 36px;
  cursor: pointer;
}

.card:hover{
     transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
Comment

PREVIOUS NEXT
Code Example
Css :: css code examples 
Css :: border collapse makes outset not work 
Css :: how to make two different animations to one element css 
Css :: image to fill container size 
Css :: bootstrap table striped change color 
Css :: Border property to set the LEFT border to "dotted" 
Css :: mb in bootstrap 
Css :: animation left to right css 
Css :: scss npm import 
Css :: login page design html css 
Css :: round image css 
Css :: add css variables without global 
Css :: style textarea in css 
Css :: text shadow css 
Css :: declare variables for color in css 
Css :: loading animation css 
Css :: flexbox space between 
Css :: divi hide header 
Css :: how to increase the area of a text are 
Css :: Change the color of anchor tags 
Css :: media queries and or conditions 
Css :: animation-direction in css 
Css :: how to add style .css in wp 
Css :: css set styles for input text 
Css :: css nested 
Css :: css display 
Css :: css not working 
Css :: change image link css 
Css :: how to fix rough text html 
Css :: how to display a header in the center of the column in css 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =