-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrumeurs.html
128 lines (112 loc) · 2.84 KB
/
rumeurs.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Rumeurs</title>
<link rel="stylesheet" href="./assets/styles/vendor/dc.css">
<style>
body {
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
font-size: 10pt;
}
h2 {
clear: both;
}
/* On screens that are 750px wide or less */
@media only screen and (max-width: 750px) {
#tableRumLink {
width: 100%;
}
}
#title {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1.2rem;
}
#tableRumLink{
width: 100%;
border-spacing: 0px;
}
#tableRumLink td, tr {
padding: 0px;
border: 1px solid lightgrey;
height: 30px;
}
#tableRumLink th, #tableRumLink td.heading{
width: 60px;
background-color: #90B4D2;
color: black;
font-weight: 700;
}
td.center{
text-align: center;
}
td.highlight{
font-size:14px;
font-weight: 700;
}
td.total{
font-size:12px;
font-weight: 650;
background: #fff99d;
}
#tableRumLink td.diagonal{
background: #ebcdf8;
font-weight: 700;
}
#tableRumLinkSummary td, tr{
padding: 0px;
border: 1px solid lightgrey;
height: 30px;
}
.row {
width: 100%;
}
#dropdown_container {
margin-top: 0.2rem;
margin-bottom: 0.2rem;
}
select {
font: 400 13px/1.3 "Helvetica Neue", sans-serif;
-webkit-appearance: none;
appearance: none;
margin-right: 1rem;
float: right;
border: 1px solid black;
line-height: 1;
outline: 0;
color: #3d1658;
border-color: black;
padding: 0.4em 2.0em 0.4em 0.75em;
border-radius: 3px;
background: linear-gradient(black, black) no-repeat,
linear-gradient(-135deg, rgba(255,255,255,0) 50%, lightgrey 50%) no-repeat,
linear-gradient(-225deg, rgba(255,255,255,0) 50%, lightgrey 50%) no-repeat,
linear-gradient(black, black) no-repeat;
background-color: lightgrey;
background-size: 1px 100%, 20px 20px, 20px 20px, 20px 60%;
background-position: right 20px center, right bottom, right bottom, right bottom;
}
</style>
</head>
<body>
<div id='dropdown_container'>
<!-- <span style="color:grey; margin-left:5rem">Sélectionnez la zone et la semaine: </span> -->
<span id='title'>Loading...</span>
<select id='dropdown_week' onchange='selectWeek()'></select>
<select id='dropdown_zone' onchange='selectZone()'></select>
</div>
<div>
<table id="tableRumLink" style="font-size: 10px"></table>
</div>
<!-- <h3>Nombre total d'occurrences de mots clés: </h3>
<div>
<table id="tableRumLinkSummary" style="font-size: 12px"></table>
</div>
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.14.0/xlsx.full.min.js"></script>
<script src="./assets/scripts/vendor/FileSaver.min.js"></script>
<script src="./assets/scripts/vendor/jquery.js"></script>
<script src="./js/rumours.js" type="text/javascript"></script>
</body>
</html>