frontpage/styles/Blog/Card.module.scss

23 lines
353 B
SCSS
Raw Normal View History

2022-09-30 19:23:14 +02:00
.card {
border: 1px solid gray;
2022-10-01 14:39:46 +02:00
border-radius: 1em;
max-width: 350px;
2022-10-01 14:04:21 +02:00
margin: 1rem auto;
transition: box-shadow 0.1s ease-in-out;
cursor: pointer;
2022-10-01 14:39:46 +02:00
padding: 10px;
margin: 5px;
2022-10-01 14:04:21 +02:00
&:hover {
box-shadow: 0px 0px 10px blue;
}
}
.title {
2022-10-01 14:39:46 +02:00
font-size: 120%;
font-weight: bold;
2022-10-01 14:04:21 +02:00
}
2022-10-07 23:03:39 +02:00
/* .description {
} */