-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
108 lines (82 loc) · 1.7 KB
/
Copy pathmain.css
File metadata and controls
108 lines (82 loc) · 1.7 KB
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
html{
display: flex;
justify-content: center;
width: 100%;
}
body {
position: relative;
padding-left: 100px;
padding-right: 100px;
padding-top: 50px;
width: 1000px;
}
.general-table {
position: relative;
width: 100%;
border-collapse: collapse;
/* Removes spacing between cells */
}
.general-table th,
.general-table td {
border: 1px solid rgb(250,250,250);
padding: 8px;
text-align: left;
}
/*
#general-table tbody tr:nth-child(odd) {
background-color: #f2f2f2;
}
#general-table tbody tr:nth-child(even) {
background-color: #ffffff;
} */
.correct-percentage-visual {
position: relative;
width: 50%;
padding: 50px;
}
.correct-percentage-visual-bar-container {
position: relative;
display: block;
width: 100%;
height: 20px;
border-radius: 10px;
border: 2px solid deepskyblue;
background-color: white;
}
.correct-percentage-visual-bar {
position: relative;
display: inline-block;
height: 100%;
border-radius: calc(10px - 2px);
background-color: skyblue;
overflow: hidden;
}
#confusion-matrix-container {
position: relative;
width: 100%;
}
#confusion-matrix-demo{
display: none;
}
.single-confusion-matrix-div{
position: relative;
display: inline-block;
margin-right: 30px;
margin-bottom: 30px;
width: 300px;
}
.single-confusion-matrix-table{
position: relative;
width: 300px;
height: 300px;
}
.single-confusion-matrix-table td{
text-align: center;
font-size: 30px;
}
.confusion-matrix-tp, .confusion-matrix-tn{
background-color: blanchedalmond;
}
.confusion-matrix-fp, .confusion-matrix-fn{
background-color:lightblue;
}