-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpreview.html
109 lines (104 loc) · 3.73 KB
/
preview.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Preview</title>
<style type="text/css">
img {
border: 1px solid blue;
}
/*td {
background: #f6f880;
padding: 0;
margin: 0;
}*/
table {
border-collapse: collapse;
}
tbody tr:nth-child(even) {
background-color: #f6f6f6;
}
tbody tr:nth-child(even) td {
border-bottom: 2px solid #eee;
}
th, td {
padding: 5px 8px;
border-right: 2px solid #fff;
text-align: left;
}
th {
font-weight: bold;
background-color: #eee;
border-bottom: 2px solid #ccc;
}
td {
border-bottom: 2px solid #fff;
}
</style>
</head>
<body>
<h1>Preview</h1>
<table>
<tr>
<th>Elusive</th>
<th>Font Awesome</th>
<th>IcoMoon</th>
<th>Typicons</th>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/adjust.png" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/adjust.png" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/contrast" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/adjust-contrast.png" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/circle-arrow-up.png" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/cloud-upload.png" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/arrow-up3" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/weather-cloudy.png" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/check.png" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/check-square-o.png" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/checkbox-checked" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/input-checked.png" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/folder-open.png" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/folder-open.png" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/folder-open" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/folder-open.png" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/calendar.png" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/calendar.png" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/calendar" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/calender.png" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/remove-sign.png" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/times-circle.png" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/cancel-circle" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/delete.png" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/cogs" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/thumbs-o-down" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/scissors" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/battery-mid" alt=""></td>
</tr>
<tr>
<td><img src="http://localhost:5000/icon/elusive/444/chevron-down" alt=""></td>
<td><img src="http://localhost:5000/icon/fontawesome/444/adn" alt=""></td>
<td><img src="http://localhost:5000/icon/icomoon/444/point-right" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/zoom-in" alt=""></td>
</tr>
<tr>
<td></td>
<td></td>
<td><img src="http://localhost:5000/icon/icomoon/444/aid" alt=""></td>
<td><img src="http://localhost:5000/icon/typicons/444/volume-down" alt=""></td>
</tr>
</table>
</body>
</html>