This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
preview_matrix.html
66 lines (63 loc) · 1.96 KB
/
preview_matrix.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
<html>
<head>
<style>
html{
background-color: #101010;
color: #e1e1e1;
font-family: Arial;
}
strong{
color: #e1e1e1;
font-size: 20px;
}
body {
background-color: #101010;
color: #e1e1e1;
margin: 1em;
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 20px;
padding:1em;
flex-direction: column;
margin: 1em;
padding-top: 1em;
height: -webkit-fill-available;
height: auto;
}
td {
padding: 12px 15px;
}
thead{
background-color: #b41b22;
color: #ffffff;
width: 100%;
font-size: 20;
font-family: Arial;
font-weight: bold;
text-align: center;
display: table-caption;
}
tbody tr {
border-bottom: 1px solid #e1e1e1;
background-color: #252525;
}
table {
border-collapse: collapse;
margin: 1em;
width: 100%;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0px 10px 15px -5px rgba(200, 200, 200, 0.10);
color: #e1e1e1;
}
.titolo{
display: flex;
justify-content: space-around;
align-items: center;
}
</style>
</head>
<body><strong>No value found in answer set for: cell1</strong><br><table><thead><tr class="titolo"><th>Answer set</th><th>Mapped value: cell2</th></tr></thead><tbody><tr><td></td><td>0</td><td>1</td><td>2</td></tr><tr><td>0</td><td>ciao</td><td>ciao</td><td>ciao</td></tr><tr><td>1</td><td>ciao1</td><td>ciao12</td><td>ciao</td></tr></tbody></table></body>
</html>