forked from Uaman/JS_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.html
More file actions
65 lines (59 loc) · 1.89 KB
/
report.html
File metadata and controls
65 lines (59 loc) · 1.89 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
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Аналітика опитувань</title>
<link rel="stylesheet" href="style/style.css">
<script src="https://cdn.webdatarocks.com/latest/webdatarocks.js"></script>
<link rel="stylesheet" href="https://cdn.webdatarocks.com/latest/webdatarocks.min.css">
<style>
body {
margin: 0;
padding: 0;
background-color: #f5f7fa;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.report-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background-color: #4277d7;
color: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.back-btn {
color: white;
text-decoration: none;
font-size: 1.1em;
padding: 8px 15px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.2);
transition: background-color 0.3s;
}
.report-container {
padding: 20px;
height: calc(100vh - 70px);
box-sizing: border-box;
}
#wdr-component {
height: 100%;
border: 1px solid #dbe3ea;
border-radius: 5px;
box-shadow: 0.5vw 0.5vw 1vw #dbe3ea;
background: white;
}
</style>
</head>
<body>
<header class="report-header">
<h1>Аналітика опитувань</h1>
<a href="index.html" class="back-btn">← Повернутись</a>
</header>
<div class="report-container">
<div id="wdr-component"></div>
</div>
<script src="src/report.js"></script>
</body>
</html>