-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_graph.css
89 lines (79 loc) · 1.73 KB
/
style_graph.css
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
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #65408d, #bcdce2);
color: white;
padding: 20px;
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Lien de retour à la page d'accueil */
.home-link {
text-align: center;
margin-bottom: 20px;
}
.home-link a {
color: #fff9e3;
font-size: 1.2rem;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}
.home-link a:hover {
background: rgba(255, 255, 255, 0.3);
color: #000;
transform: translateY(-2px);
}
h1 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 40px;
color: #fff9e3;
text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.charts {
display: flex;
justify-content: space-around;
gap: 20px;
flex-wrap: wrap;
margin-top: 20px;
}
.chart-container {
text-align: center;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
max-width: 400px;
width: 100%;
}
.chart-container h2 {
font-size: 1.5rem;
margin-bottom: 20px;
color: #fff9e3;
}
.chart-container img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.chart-container i {
font-size: 2rem;
color: #fff9e3;
margin-bottom: 10px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
margin-top: auto;
padding: 10px;
background: rgba(0, 0, 0, 0.4);
font-size: 0.9rem;
color: #ffffff;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}