-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoi.css
113 lines (97 loc) · 2.14 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
width: 92%;
padding: 20px;
color: black;
font-family: 'Poppins', sans-serif;
margin: auto;
line-height: 1.6; /* Augmente l'espace entre les lignes */
}
h1 {
text-align: center;
color: rgb(230, 100, 100);
border-radius: 30px;
font-family: 'Luckiest Guy', cursive;
padding: 15px;
}
h2 {
padding: 15px;
border-radius: 20px;
font-family: 'Luckiest Guy', cursive;
border: dashed 2px rgb(226,45,69);
text-align: center;
color: rgb(226,45,69);
}
h3 {
padding: 10px;
border-radius: 30px;
font-family: 'Luckiest Guy', cursive;
color: rgb(17,2,95)
}
p {
text-indent: 5%;
margin-bottom: 15px;
}
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: 20px; /*élargit navbar*/ /*16px*/
align-items: center;
/*background: linear-gradient(to right, rgb(144, 54, 54), rgb(255, 153, 102));*/
border-radius: 5px;/*10px*/
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
max-width: 1400px;
width: 96%;
}
.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*/
list-style: none;
}
.navbar ul li {
margin: 0 15px;
}
.navbar ul li a {
padding: 12px; /*espace entre écritures*/
margin: 0 6px;
color: white;
font-weight: bold;
transition: all 0.3s ease;
border-radius: 5px;
}
.navbar ul li a:hover {
/* quand on met souris sur différents liens*/
/*color: white;*/
background-color: rgb(255,153,102);
border-radius: 4px;
background-color: white;
color: rgb(230, 100, 100);
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.afc {
font-family: "Sports World", 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%;
}