Created
December 3, 2016 18:04
-
-
Save domfarolino/2326099d38dc1887c2b34166cb4f44ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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