56 lines
798 B
CSS
56 lines
798 B
CSS
.link {
|
|
display: inline-block;
|
|
transition: 200ms ease;
|
|
}
|
|
|
|
.link:hover {
|
|
text-decoration: none;
|
|
transform: scale(1.01);
|
|
}
|
|
|
|
.image {
|
|
height: auto;
|
|
object-fit: contain;
|
|
object-position: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.content {
|
|
padding: 10px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.heading {
|
|
color: #00838e;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-weight: 400;
|
|
line-height: normal;
|
|
margin-bottom: 0;
|
|
text-decoration: none;
|
|
text-transform: none;
|
|
}
|
|
|
|
.link:hover .heading {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.p {
|
|
color: #333;
|
|
line-height: 1.3;
|
|
margin-bottom: 0;
|
|
padding-top: 7px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media screen and (min-width: 740px) {
|
|
.content {
|
|
padding: 20px 0px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.heading {
|
|
font-size: 1.375rem;
|
|
}
|
|
}
|