Added callout card email styles

Refs https://github.com/TryGhost/Team/issues/1206
This commit is contained in:
Sanne de Vries 2021-11-15 19:45:33 +01:00
parent 0681953e1f
commit 632e15affc
2 changed files with 53 additions and 1 deletions

View File

@ -1,7 +1,6 @@
.kg-card-callout {
display: flex;
padding: 20px 28px;
background: #f1f3f4;
border-radius: 3px;
}

View File

@ -600,6 +600,59 @@ a.kg-nft-card {
color: #222;
}
.kg-card-callout {
display: flex;
padding: 20px 28px;
border-radius: 3px;
}
.kg-card-callout p {
margin: 0
}
.kg-card-callout-grey {
background: #eef0f2;
}
.kg-card-callout-white {
background: #fff;
box-shadow: inset 0 0 0 1px #dddedf;
}
.kg-card-callout-blue {
background: #E9F6FB;
}
.kg-card-callout-green {
background: #E8F8EA;
}
.kg-card-callout-yellow {
background: #FCF4E3;
}
.kg-card-callout-red {
background: #FBE9E9;
}
.kg-card-callout-pink {
background: #FCEEF8;
}
.kg-card-callout-purple {
background: #F2EDFC;
}
.kg-card-callout-accent {
background: var(--ghost-accent-color);
color: #fff;
}
.kg-callout-emoji {
padding-right: 12px;
font-size: 20px;
}
/* -------------------------------------
HEADER, FOOTER, MAIN
------------------------------------- */