This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (116 loc) · 4.58 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Material Design - Responsive Table</title>
<script src="https://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="demo">
<h1>Material Design Responsive Table</h1>
<h2>Table of my other Material Design works (list was updated 08.2015)</h2>
<!-- Responsive table starts here -->
<!-- For correct display on small screens you must add 'data-title' to each 'td' in your table -->
<div class="table-responsive-vertical shadow-z-1">
<!-- Table starts here -->
<table id="table" class="table table-hover table-mc-light-blue">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Link</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td data-title="ID">1</td>
<td data-title="Name">Material Design Color Palette</td>
<td data-title="Link">
<a href="https://github.com/zavoloklom/material-design-color-palette" target="_blank">GitHub</a>
</td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">2</td>
<td data-title="Name">Material Design Iconic Font</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/uqCsB" target="_blank">Codepen</a>
<a href="https://github.com/zavoloklom/material-design-iconic-font" target="_blank">GitHub</a>
</td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">3</td>
<td data-title="Name">Material Design Hierarchical Display</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/eNaEBM" target="_blank">Codepen</a>
<a href="https://github.com/zavoloklom/material-design-hierarchical-display" target="_blank">GitHub</a>
</td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">4</td>
<td data-title="Name">Material Design Sidebar</td>
<td data-title="Link"><a href="https://codepen.io/zavoloklom/pen/dIgco" target="_blank">Codepen</a></td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">5</td>
<td data-title="Name">Material Design Tiles</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/wtApI" target="_blank">Codepen</a>
</td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">6</td>
<td data-title="Name">Material Design Typography</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/IkaFL" target="_blank">Codepen</a>
<a href="https://github.com/zavoloklom/material-design-typography" target="_blank">GitHub</a>
</td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">7</td>
<td data-title="Name">Material Design Buttons</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/Gubja" target="_blank">Codepen</a>
</td>
<td data-title="Status">In progress</td>
</tr>
<tr>
<td data-title="ID">8</td>
<td data-title="Name">Material Design Form Elements</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/yaozl" target="_blank">Codepen</a>
</td>
<td data-title="Status">In progress</td>
</tr>
<tr>
<td data-title="ID">9</td>
<td data-title="Name">Material Design Email Template</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/qEVqzx" target="_blank">Codepen</a>
</td>
<td data-title="Status">Completed</td>
</tr>
<tr>
<td data-title="ID">10</td>
<td data-title="Name">Material Design Animation Timing (old one)</td>
<td data-title="Link">
<a href="https://codepen.io/zavoloklom/pen/Jbrho" target="_blank">Codepen</a>
</td>
<td data-title="Status">Completed</td>
</tr>
</tbody>
</table>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>