Files
2017-05-05 12:49:03 -04:00

56 lines
971 B
CSS

@import '../theme.css';
.card {
composes: base container rounded depth;
overflow: hidden;
border: 1px solid #f7f8f8;
transition: all .1s ease-in-out;
transform: translateY(0);
padding: 16px 24px;
}
.card:hover {
background: #f8f9fa;
transform: translateY(-8px);
}
/*.card > *:not(iframe, video, img, header, footer) {
margin-right: 10px;
margin-left: 10px;
}
.card > *:not(iframe, video, img, header, footer):first-child {
margin-top: 10px;
}
.card > *:not(iframe, video, img, header, footer):last-child {
margin-bottom: 10px;
}*/
.card > iframe,
.card > video,
.card > img {
margin: -16px -24px 16px -24px;
width: calc(100% + 16px + 16px);
}
.card h1 {
font-size: 16px;
font-weight: 600;
letter-spacing: 0;
line-height: 24px;
margin: 0;
padding: 0;
border: none;
color: var(--defaultColor);
}
.card p {
font-size: 14px;
font-weight: 400;
letter-spacing: 0;
line-height: 24px;
padding: 0;
color: #8c8c8c;
}