-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (44 loc) · 1.01 KB
/
styles.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Adapter la taille de l'image pour MTG ARENA */
header {
background-color: #4CAF50;
color: white;
padding: 1em;
text-align: center;
}
main {
padding: 1em;
}
/* Changement à faire au niveau du footer les 3 autres fichiers CSS, changer en responsive, les couleurs, la barre de navigation sur le côté et le footer en bas de page. */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
position: relative;
width: 100%;
bottom: 0;
transition: transform 0.3s ease-in-out;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
footer a {
color: white;
text-decoration: none;
margin: 0.5em;
padding: 0.5em 1em;
border: 1px solid white;
border-radius: 5px;
transition: background-color 0.3s ease-in-out;
font-size: 0.8em;
}
footer a:hover {
background-color: white;
color: #333;
}