-
Notifications
You must be signed in to change notification settings - Fork 0
/
moi.css
57 lines (47 loc) · 1.07 KB
/
moi.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
a {
text-decoration: none;
}
.navbar {
display: flex;
justify-content: space-between; /*met le h1 à droite et les h2 à gauche*/
background-color: rgb(144,54,54);
padding: 16px; /*élargit navbar*/
}
.logo_title, .navbar ul li a {
color: white; /* met les écritures en blanc*/
}
.navbar ul {
display: flex;
align-items: center; /* met les écritures à la suite et pas en colonne*/
list-style-type: none; /* enlève les points de la liste*/
}
.navbar ul li a {
padding: 12px; /*espace entre écritures*/
margin: 0 6px;
}
.navbar ul li a:hover{
/* quand on met souris sur différents liens*/
color: white;
background-color : rgb(255,153,102);
border-radius: 4px;
}
.afc {
font-family: "Frijole", system-ui;
font-weight: 700;
font-style: normal;
font-size: 80px;
color: red;
}
.logo_afc {
max-width: 30%;
display: block;
float: left;
/*width: 116px; largeur en pixel de ta photo*/
/*height:104px; hauteur en pixel de ta photo */
/*margin-right:10px; marge en pixel à droite de la photo */
}
img {
display: block;
margin: 0 auto;
max-width:38%;
}