Apply changes proposed by review

This commit is contained in:
Rafael Conde
2017-05-03 07:53:50 -07:00
committed by Shawn Erquhart
parent 6492eea1c8
commit ff2a045192
5 changed files with 21 additions and 5 deletions

View File

@ -12,7 +12,7 @@
.card > iframe,
.card > video,
.card > img {
margin: -16px -24px 16px -24px;
margin: -16px -24px 16px;
width: calc(100% + 16px + 16px);
}
@ -33,5 +33,18 @@
letter-spacing: 0;
line-height: 24px;
padding: 0;
color: #8c8c8c;
color: var(--textMutedColor);
}
.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;
}

View File

@ -10,6 +10,7 @@
--warningColor: #fa0;
--errorColor: #f52;
--textColor: #191919;
--textMutedColor: #8c8c8c;
--borderRadius: 4px;
--borderRadiusLarge: 8px;
--dropShadow: 0 2px 4px 0 rgba(19, 39, 48, .12);