-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.html
122 lines (119 loc) · 2.45 KB
/
data.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
<style>
@import "https://fonts.googleapis.com/css?family=Montserrat:300,400,700";
.rwd-table {
margin: 1em 0;
min-width: 300px;
}
.rwd-table tr {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.rwd-table th {
display: none;
}
.rwd-table td {
display: block;
}
.rwd-table td:first-child {
padding-top: .5em;
}
.rwd-table td:last-child {
padding-bottom: .5em;
}
.rwd-table td:before {
content: attr(data-th) ": ";
font-weight: bold;
width: 6.5em;
display: inline-block;
}
@media (min-width: 480px) {
.rwd-table td:before {
display: none;
}
}
.rwd-table th, .rwd-table td {
text-align: left;
}
@media (min-width: 480px) {
.rwd-table th, .rwd-table td {
display: table-cell;
padding: .25em .5em;
}
.rwd-table th:first-child, .rwd-table td:first-child {
padding-left: 0;
}
.rwd-table th:last-child, .rwd-table td:last-child {
padding-right: 0;
}
}
h1 {
font-weight: normal;
letter-spacing: -1px;
color: #34495E;
}
.rwd-table {
background: #34495E;
color: #fff;
border-radius: .4em;
overflow: hidden;
}
.rwd-table tr {
border-color: #46637f;
}
.rwd-table th, .rwd-table td {
margin: .5em 1em;
}
@media (min-width: 480px) {
.rwd-table th, .rwd-table td {
padding: 1em !important;
}
}
.rwd-table th, .rwd-table td:before {
color: #dd5;
}
</style>
<script>
window.console = window.console || function(t) {};
</script>
<script>
if (document.location.search.match(/type=embed/gi)) {
window.parent.postMessage("resize", "*");
}
</script><table class='rwd-table'border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>userID</th>
<th>firstName</th>
<th>middleName</th>
<th>lastName</th>
<th>dateOfBirth</th>
<th>budget</th>
<th>emailID</th>
<th>phoneNumber</th>
<th>streetName</th>
<th>city</th>
<th>pincode</th>
<th>state</th>
<th>isClient</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>I21p5a6t2C</td>
<td>MacKensie</td>
<td>Trevor</td>
<td>Crosby</td>
<td>1987-04-27</td>
<td>13540</td>
<td>[email protected]</td>
<td>9729651309</td>
<td>Ap #335-2862 Curae; St.</td>
<td>Stargard Szczeciński</td>
<td>80461</td>
<td>ZP</td>
<td>1</td>
</tr>
</tbody>
</table>