A Pen by jaime sanchez on CodePen.
Created
July 21, 2016 02:17
-
-
Save jsanch/d866262c27b9ed3c3de4a251313d2974 to your computer and use it in GitHub Desktop.
Material Design Lite components demo
This file contains 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
<html> | |
<head> | |
<!-- Material Design Lite --> | |
<script src="https://code.getmdl.io/1.1.3/material.min.js"></script> | |
<link rel="stylesheet" href="https://code.getmdl.io/1.1.3/material.indigo-pink.min.css"> | |
<!-- Material Design icon font --> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | |
</head> | |
<body> | |
<table class="mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp"> | |
<thead> | |
<tr> | |
<th class="mdl-data-table__cell--non-numeric">Material</th> | |
<th>Quantity</th> | |
<th>Unit price</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td class="mdl-data-table__cell--non-numeric">Acrylic (Transparent)</td> | |
<td>25</td> | |
<td>$2.90</td> | |
</tr> | |
<tr> | |
<td class="mdl-data-table__cell--non-numeric">Plywood (Birch)</td> | |
<td>50</td> | |
<td>$1.25</td> | |
</tr> | |
<tr> | |
<td class="mdl-data-table__cell--non-numeric">Laminate (Gold on Blue)</td> | |
<td>10</td> | |
<td>$2.35</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
This file contains 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
body { | |
padding: 20px; | |
background: #fafafa; | |
position: relative; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment