Material Admin

Cards
Basic Card
Card Title

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Card Title

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

                                            
                                                <div class="row">
                                                    <div class="col s6">
                                                        <div class="card blue-grey darken-1">
                                                            <div class="card-content white-text">
                                                            <span class="card-title">Card Title</span>
                                                            <p>I am a very simple card. I am good at containing small bits of information.
                                                            I am convenient because I require little markup to use effectively.</p>
                                                            </div>
                                                            <div class="card-action">
                                                                <a href="#">This is a link</a>
                                                                <a href="#">This is a link</a>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            
                                        
Image Card
Card Title

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

                                            
                                                <div class="row">
                                                    <div class="col s12 m7">
                                                        <div class="card">
                                                            <div class="card-image">
                                                                <img src="images/sample-1.jpg">
                                                                <span class="card-title">Card Title</span>
                                                            </div>
                                                            <div class="card-content">
                                                                <p>I am a very simple card. I am good at containing small bits of information.
                                                                I am convenient because I require little markup to use effectively.</p>
                                                            </div>
                                                            <div class="card-action">
                                                                <a href="#">This is a link</a>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            
                                        

FABs in Cards
Card Title add

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Card Title add

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

                                            
                                                <div class="row">
                                                    <div class="col s12 m6">
                                                        <div class="card">
                                                            <div class="card-image">
                                                                <img src="images/sample-1.jpg">
                                                                <span class="card-title">Card Title</span>
                                                                <a class="btn-floating halfway-fab waves-effect waves-light red"><i class="material-icons">add</i></a>
                                                            </div>
                                                            <div class="card-content">
                                                                <p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            
                                        
Horizontal Card

I am a very simple card. I am good at containing small bits of information.

I am a very simple card. I am good at containing small bits of information.

                                            
                                                <div class="col s12 m7">
                                                    <h2 class="header">Horizontal Card</h2>
                                                    <div class="card horizontal">
                                                        <div class="card-image">
                                                            <img src="../../assets/images/cards/h-card.jpg">
                                                        </div>
                                                        <div class="card-stacked">
                                                            <div class="card-content">
                                                                <p>I am a very simple card. I am good at containing small bits of information.</p>
                                                            </div>
                                                            <div class="card-action">
                                                                <a href="#">This is a link</a>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            
                                        
Card Reveal

Here you can add a card that reveals more information once clicked. Just add the card-reveal div with a span.card-title inside to make this work. Add the class activator to an element inside the card to allow it to open the card reveal.

Card Titlemore_vert

This is a link

Card Titleclose

The default state is having the card-reveal go over the card-action.

                                            
                                                <div class="card">
                                                    <div class="card-image waves-effect waves-block waves-light">
                                                        <img class="activator" src="../../assets/images/cards/office.jpg">
                                                    </div>
                                                    <div class="card-content">
                                                        <span class="card-title activator grey-text text-darken-4">Card Title<i class="material-icons right">more_vert</i></span>
                                                        <p><a href="#">This is a link</a></p>
                                                    </div>
                                                    <div class="card-reveal">
                                                        <span class="card-title grey-text text-darken-4">Card Title<i class="material-icons right">close</i></span>
                                                        <p>Here is some more information about this product that is only revealed once clicked on.</p>
                                                    </div>
                                                </div>
                                            
                                        
Card Titlemore_vert

This is a link

Card Titleclose

You can make your card-action always visible by adding the class sticky-action to the overall card.

                                            
                                                <div class="card sticky-action">
                                                    ...

                                                    <div class="card-action">...</div>

                                                    <div class="card-reveal">...</div>
                                                </div>
                                            
                                        
Tabs in Cards

You can add tabs to your cards by adding a dividing cards-tabs div inbetween your header content and your tab content.

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Test 1
Test 2
Test 3

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Test 1
Test 2
Test 3
                                            
                                                <div class="card">
                                                    <div class="card-content">
                                                      <p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p>
                                                    </div>
                                                    <div class="card-tabs">
                                                        <ul class="tabs tabs-fixed-width">
                                                            <li class="tab"><a href="#test4">Test 1</a></li>
                                                            <li class="tab"><a class="active" href="#test5">Test 2</a></li>
                                                            <li class="tab"><a href="#test6">Test 3</a></li>
                                                        </ul>
                                                    </div>
                                                    <div class="card-content grey lighten-4">
                                                        <div id="test4">Test 1</div>
                                                        <div id="test5">Test 2</div>
                                                        <div id="test6">Test 3</div>
                                                    </div>
                                                </div>
                                            
                                        
Card Sizes

If you want to have uniformly sized cards, you can use our premade size classes. Just add the size class in addition to the card class.

                                            
                                                <div class="card small">
                                                    <!-- Card Content -->
                                                </div>
                                            
                                        
Small Card

The Small Card limits the height of the card to 300px.

Card Title

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Medium Card

The Medium Card limits the height of the card to 400px.

Card Title

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Large Card

The Large Card limits the height of the card to 500px.

Card Title

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

Card Panel

For a simpler card with less markup, try using a card panel which just has padding and a shadow effect.

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively. I am similar to what is called a panel in other frameworks.
I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively. I am similar to what is called a panel in other frameworks.
                                            
                                                <div class="row">
                                                    <div class="col s12 m5">
                                                        <div class="card-panel teal">
                                                            <span class="white-text">I am a very simple card. I am good at containing small bits of information.
                                                            I am convenient because I require little markup to use effectively. I am similar to what is called a panel in other frameworks.
                                                            </span>
                                                        </div>
                                                    </div>
                                                </div>
                                            
                                        
All Rights Reserved by Materialart. Designed and Developed by WrapPixel.
settings