-
Notifications
You must be signed in to change notification settings - Fork 1
/
distribution.html
221 lines (166 loc) · 5.22 KB
/
distribution.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cuneo Online Statistics</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="Assets/Images/Logo-Team.png" type="image/png">
<!--
- custom css link
-->
<link rel="stylesheet" href="Assets/style_dashboard.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;900&display=swap"
rel="stylesheet">
<!--
- material icon link
-->
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
rel="stylesheet" />
</head>
<body>
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<h1>
<a href="FirstPage.html" class="logo">Cuneo Stats</a>
</h1>
<button class="menu-toggle-btn icon-box" data-menu-toggle-btn aria-label="Toggle Menu">
<span class="material-symbols-rounded icon">menu</span>
</button>
<nav class="navbar">
<div class="container">
<ul class="navbar-list">
<li>
<a href="#" class="navbar-link active icon-box">
<span class="material-symbols-rounded icon">grid_view</span>
<span>Home</span>
</a>
</li>
<li>
<a href="tables.html" class="navbar-link icon-box">
<span class="material-symbols-rounded icon">table</span>
<span>Tab Efficienza</span>
</a>
</li>
<li>
<a href="FirstPage.html" class="navbar-link icon-box">
<span class="material-symbols-rounded icon">trophy</span>
<span>All past matches</span>
</a>
</li>
</ul>
<!--
<ul class="user-action-list">
<li>
<a href="#" class="notification icon-box">
<span class="material-symbols-rounded icon">notifications</span>
</a>
</li>
<li>
<a href="#" class="header-profile">
<figure class="profile-avatar">
<img src="./Assets/Images/Logo-Team.png" alt="Cuneo" width="50" height="50">
</figure>
<div>
<p class="profile-title">Elizabeth F</p>
<p class="profile-subtitle">Admin</p>
</div>
</a>
</li>
</ul>
-->
</div>
</nav>
</div>
</header>
<main>
<article class="container article">
<h2 class="h2 article-title">Distribuzione del Palleggio</h2>
<div class="row">
<div class="card profile-card">
<div>
<p class="card-title">P4</p>
</div>
<img src="Backend/Distribuzione4.png" width="100%" height="400">
</div>
<div class="card profile-card">
<div>
<p class="card-title">P2</p>
</div>
<img src="Backend/Distribuzione2.png" width="100%" height="400">
</div>
<div class="card profile-card">
<div>
<p class="card-title">P3</p>
</div>
<img src="Backend/Distribuzione3.png" width="100%" height="400">
</div>
</div>
<div class="row">
<div class="card profile-card">
<div>
<p class="card-title">P5</p>
</div>
<img src="Backend/Distribuzione5.png" width="100%" height="400">
</div>
<div class="card profile-card">
<div>
<p class="card-title">P6</p>
</div>
<img src="Backend/Distribuzione6.png" width="100%" height="400">
</div>
<div class="card profile-card">
<div>
<p class="card-title">P1</p>
</div>
<img src="Backend/Distribuzione1.png" width="100%" height="400">
</div>
</div>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
<div class="container">
<p class="copyright">
© 2024 <a href="#" class="copyright-link">Mirko Calcaterra</a>. All Rights Reserved
</p>
</div>
</footer>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
</body>
</html>
<script>
function myFunctionTable() {
var x = document.getElementById("TableSection");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
function myFunctionPlot() {
var x = document.getElementById("PlotSection");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>