Search
 
SCRIPT & CODE EXAMPLE
 

CSS

bootstrap card hover effect

.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 :: convert firebase created_at to Date string 
Css :: center wrapped flex children 
Css :: gap css flex 
Css :: change link color in wordpress 
Css :: border width css 
Css :: css good font color 
Css :: css top padding 
Css :: css using the same background-color as the parent background 
Css :: cssnano 
Css :: glassmorphism background in css 
Css :: purgecss cli 
Css :: fade in transition css 
Css :: use css in cshtml 
Css :: how to define global font in css 
Css :: Disable text selection/highlight 
Css :: flex direction tailwind 
Css :: css max width media 
Css :: css profile picture round 
Css :: css for paragraph beautiful 
Css :: sql file extension 
Css :: not focus css 
Css :: collapse border css 
Css :: css border-left 
Css :: add shadow to iframe 
Css :: pure css tabs 
Css :: css disabled 
Css :: css image transparency 
Css :: background-attachment 
Css :: taille texte css 
Css :: how create checkbox ui like disabled checkbox using css 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =