How to use Polymer's core-card without using core-scaffold?
css, html, polymer
Solution
what i used for my card elements was just a paper-shadow styled as a card.
.card {
margin:auto;
margin-top:5px;
background-color:#FFFFFF;
border-radius:2px;
color:#000000;
border:1px solid #d8d8d8;
padding:10px;
text-align:left;
font-size:10pt;
position:relative;
}
<paper-shadow z="1" class="card">
// card content
</paper-shadow>
maybe this will get you by. from what i read they are working on a standalone card element but it just isn't ready for the moment.
Problem
I need to use the `core-card` element of polymer but it appears it is not present as a single element so it can not be imported and used without using `core-scaffold`. Is there any other way or alternate element?