Skip to main content Sidebar Design tokens Components Layout Style utilities

We’d love to hear from you. Please reach out to us with any questions or inquiries you may have.

You can contact us via e‐mail at placer.coc.reports+contact@gmail.com.

We look forward to hearing from you!

Got it!
Skip to table of contents

The Placer Toolkit alpha has arrived! 🎉
Plenty of changes are coming your way—some big, some breaking, some even nuclear! Beware the changelog…

Bring it on!

    Card

    <pc-card> 0.1.0 experimental

    Cards can be used to group related subjects in a container.

    <pc-card class="card-overview">
        <img
            slot="media"
            src="https://placehold.co/300x200/?text=300×200&font=montserrat"
            alt="A placeholder image with grey background and dark grey text in resolution 300 by 200 pixels"
        />
    
        <strong slot="header">Lorem ipsum</strong>
    
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
        eiusmod tempor incididunt ut labore et dolore magna aliqua.
    
        <footer slot="footer">
            <pc-button appearance="primary" pill>
                <pc-icon
                    library="default"
                    icon-style="solid"
                    name="cart-shopping"
                    slot="prefix"
                ></pc-icon>
                Buy
            </pc-button>
    
            <pc-dropdown placement="bottom-end">
                <pc-button appearance="neutral" variant="plain" slot="trigger" pill>
                    <pc-icon
                        library="default"
                        icon-style="solid"
                        name="ellipsis"
                        label="More information"
                    ></pc-icon>
                </pc-button>
    
                <pc-dropdown-item value="view-details">
                    <pc-icon
                        library="default"
                        icon-style="solid"
                        name="circle-info"
                        slot="icon"
                    ></pc-icon>
                    View details
                </pc-dropdown-item>
                <pc-dropdown-item value="favourite">
                    <pc-icon
                        library="default"
                        icon-style="solid"
                        name="heart"
                        slot="icon"
                    ></pc-icon>
                    Favourite
                </pc-dropdown-item>
                <pc-dropdown-item value="share">
                    <pc-icon
                        library="default"
                        icon-style="solid"
                        name="share-nodes"
                        slot="icon"
                    ></pc-icon>
                    Share
                </pc-dropdown-item>
                <pc-dropdown-item value="compare">
                    <pc-icon
                        library="default"
                        icon-style="solid"
                        name="scale-balanced"
                        slot="icon"
                    ></pc-icon>
                    Compare
                </pc-dropdown-item>
            </pc-dropdown>
        </footer>
    </pc-card>
    
    <style>
        .card-overview {
            max-inline-size: 300px;
        }
    
        .card-overview footer {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: var(--pc-spacing-s);
        }
    </style>
    Code Edit

    Demos#

    Basic card#

    Basic cards aren’t very exciting, but they can display any content you want them to.

    Edit

    With header#

    Headers can be used to display titles and more.

    Edit

    Footers can be used to display actions, summaries or other relevant content.

    Edit

    Media#

    Cards accept a media slot. The media is displayed at the top of the card and stretches to fit.

    Edit

    Variants#

    Use the variant attribute to change the card’s variant.

    Edit

    Properties#

    NameDescriptionReflectsDefault
    variantThe card’s variant.
    Type: "accent" | "filled" | "outlined" | "plain"
    "outlined"
    updateComplete A read‐only promise that resolves when the component has finished updating.

    Learn more about attributes and properties.

    Slots#

    NameDescription
    (default)The card’s main content.
    mediaAn optional media section to render at the start of the card.
    headerAn optional header for the card.
    footerAn optional footer for the card.

    Learn more about using slots.

    Custom properties#

    NameDescriptionDefault
    --spacingThe amount of space around and between sections of the card.var(--pc-spacing-l)

    Learn more about customising custom properties.

    Parts#

    NameDescription
    baseThe component’s base wrapper.
    mediaThe container that wraps the card’s media.
    headerThe container that wraps the card’s header.
    bodyThe container that wraps the card’s main content.
    footerThe container that wraps the card’s footer.

    Learn more about customising CSS parts.

    Importing#

    If you’re using the autoloader or the standard loader, you can skip this section. But if you’re cherry picking, you can use any of the following snippets to import this component.

    CDN (script tag) CDN (import) npm (import)

    To manually import this component from the CDN, copy this code snippet and paste it in your HTML.

    <script type="module" src="https://cdn.jsdelivr.net/npm/placer-toolkit@1.0.0-alpha.1/cdn/components/card/card.js"></script>

    To manually import this component from the CDN, copy this code snippet and paste it in your JavaScript file.

    import "https://cdn.jsdelivr.net/npm/placer-toolkit@1.0.0-alpha.1/cdn/components/card/card.js";

    To manually import this component from npm, copy this code snippet and paste it in your JavaScript file.

    import "placer-toolkit/dist/components/card/card.js";