42 lines
575 B
SCSS
42 lines
575 B
SCSS
.card-article {
|
|
background: #ffffff;
|
|
border-radius: 12px;
|
|
width: 344px;
|
|
margin-bottom: 24px;
|
|
transition: 0.4s;
|
|
a {
|
|
color: #000000;
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
transform: scale(1.05);
|
|
transition: 0.4s;
|
|
a {
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
h5 {
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 17px;
|
|
line-height: 20px;
|
|
padding: 12px 16px 8px 16px;
|
|
}
|
|
|
|
&__data {
|
|
display: flex;
|
|
padding: 0 0 14px 16px;
|
|
|
|
p {
|
|
font-size: 13px;
|
|
}
|
|
|
|
img {
|
|
width: 15px;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|