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

35 lines
578 B
CSS

@import '../theme.css';
.card {
composes: base container rounded depth;
overflow: hidden;
border: 1px solid #F7F8F8;
}
.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 {
max-width: 100%;
}
.card h1 {
margin: 15px 0;
padding: 0;
border: none;
color: var(--defaultColor);
font-size: 18px;
}