blob: 97f20d92c0421fa70c403b6255b053bcb9a3926d (
plain) (
blame)
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
|
body {
background-color:#EEEEEE;
}
h1 {
background: #55f;
padding: 5px 10px;
border-radius: 10px;
color: #ffc0b0;
text-align: center;
}
#warnings {
background: #ff8060;
}
input[type="text"] {
max-width: 20vw;
}
#sectioncourbe {
display: none;
}
#sectionexport {
display: none;
}
#export {
width: 25em;
height: 20em;
display:none;
}
#courbe_warnings {
display: none;
}
#courbe_erreurs {
display: none;
}
#import_donnees, #pref_graphique{
display: none;
}
.bouton {
text-decoration: underline;
}
.bouton:hover {
cursor:pointer;
}
|