23 lines
366 B
SCSS
23 lines
366 B
SCSS
.card {
|
|
border: 1px solid gray;
|
|
border-radius: 1em;
|
|
max-width: 350px;
|
|
margin: 1rem auto;
|
|
transition: box-shadow 0.1s ease-in-out;
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
margin: 5px;
|
|
|
|
&:hover {
|
|
box-shadow: 0px 0px 10px var(--blog_color);
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* .description {
|
|
|
|
} */ |