This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
viewgrid.html
66 lines (66 loc) · 1.85 KB
/
viewgrid.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Search and Report - Grid View</title>
<style>
table {
border-collapse: collapse;
border-spacing: 0;
padding: 0;
width: 80vmin;
height: 80vmin;
margin: auto;
}
td {
width: calc(100% / __height__);
height: calc(100% / __width__);
background-color: #eee;
border: 1px solid #000;
}
td[grey] {
background-color: #aaa;
}
td[red] {
background-color: #f00;
}
td[green] {
background-color: #0f0;
}
td[blue] {
background-color: #00f;
}
td[yellow] {
background-color: #ff0;
}
td[cyan] {
background-color: #0ff;
}
td[magenta] {
background-color: #f0f;
}
td[magnet] {
box-shadow: inset 0 0 0 25px #eee;
background-color: #555;
/* background-image: url("https://picsum.photos/id/237/200/300"); */
}
div {
text-align: center;
margin-top: 1em;
font-family: "Gill Sans", "Gill Sans MT", Calibri,
"Trebuchet MS", sans-serif;
}
</style>
</head>
<body>
<table>
__table__
</table>
<div>
Your ID is: <b>__id__</b>
<br />
</div>
</body>
</html>