Last active
October 10, 2018 09:54
-
-
Save SalesforceBobLightning/7600adc86c94b789fb23571d109df3fb to your computer and use it in GitHub Desktop.
Salesforce Lightning Design System - Card without SVG icons
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
| <article class="slds-card"> | |
| <div class="slds-card__header slds-grid"> | |
| <header class="slds-media slds-media_center slds-has-flexi-truncate"> | |
| <div class="slds-media__figure"> | |
| <lightning:icon iconName="standard:opportunity" alternativeText="TITLE" /> | |
| </div> | |
| <div class="slds-media__body"> | |
| <h2 class="slds-card__header-title"> | |
| <a href="javascript:void(0);" class="slds-card__header-link slds-truncate" title="TITLE"> | |
| <span class="slds-text-heading_small">TITLE</span> | |
| </a> | |
| </h2> | |
| </div> | |
| </header> | |
| </div> | |
| <div class="slds-card__body slds-card__body_inner"> | |
| <div class="slds-grid slds-wrap slds-gutters"> | |
| <div class="slds-col slds-size_1-of-2"> | |
| left | |
| </div> | |
| <div class="slds-col slds-size_1-of-2"> | |
| right | |
| </div> | |
| </div> | |
| </div> | |
| <footer class="slds-card__footer"> | |
| <div class="slds-m-top_medium"> | |
| FOOTER | |
| </div> | |
| </footer> | |
| </article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment