Skip to content

Instantly share code, notes, and snippets.

@domfarolino
Created December 3, 2016 18:04
Show Gist options
  • Save domfarolino/2326099d38dc1887c2b34166cb4f44ed to your computer and use it in GitHub Desktop.
Save domfarolino/2326099d38dc1887c2b34166cb4f44ed to your computer and use it in GitHub Desktop.
:host {
font-family: sans-serif;
}
div.card {
width: 100%;
max-width: 300px;
display: inline-block;
box-shadow: 0px 1px 3px rgba(0, 0, 0, .6);
margin: 10px;
padding: 10px;
background: white;
}
::slotted([slot="card-header"]) { /* use attribute selector */
font-size: 25px;
text-align: center;
}
::slotted([slot="card-body"]) {
font-size: 20px;
}
::slotted([slot="card-author"]) {
font-size: 14px;
display: inline-block;
}
.card-footer {
margin: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment