frontpage/styles/Blog/Card.module.scss

21 lines
284 B
SCSS
Raw Normal View History

2022-09-30 19:23:14 +02:00
.card {
border: 1px solid gray;
border-radius: 5px;
2022-10-01 14:04:21 +02:00
max-width: 40%;
margin: 1rem auto;
transition: box-shadow 0.1s ease-in-out;
cursor: pointer;
padding: 5px;
&:hover {
box-shadow: 0px 0px 10px blue;
}
}
.title {
}
.description {
2022-09-30 19:23:14 +02:00
}