11 lines
180 B
CSS
11 lines
180 B
CSS
.blog-card {
|
|
transition: 1s;
|
|
width: 80%;
|
|
background-color: #eee;
|
|
border-radius: 20px;
|
|
overflow: clip;
|
|
}
|
|
|
|
.blog-card:hover {
|
|
transform: translateY(-10px);
|
|
}
|