-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPC_M.css
More file actions
67 lines (56 loc) · 1.05 KB
/
Copy pathPC_M.css
File metadata and controls
67 lines (56 loc) · 1.05 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
66
67
html {
height: 100%;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
header {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
main {
flex: 1; /* Permet au main d'occuper tout l'espace disponible */
padding: 20px;
max-width: 800px;
margin: auto;
}
section {
margin-bottom: 20px;
}
h1{
color: #fff;
}
h2 {
color: #333;
}
p {
font-size: 1em;
}
footer {
height: 60px;
text-align: center;
padding: 20px 0;
background: #333;
color: #fff;
}
a {
color: #06c;
}
#backToHome {
position: fixed;
padding: 10px 15px;
background-color: #4CAF50;
color: white;
text-decoration: none; /* Supprime le soulignement du lien */
border-radius: 5px;
font-size: 16px;
z-index: 1000; /* Assurez-vous que le lien est au-dessus des autres éléments */
}
#backToHome:hover {
background-color: #367c39; /* Changement de couleur au survol */
}