-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
302 lines (258 loc) · 7.18 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/* Styles généraux et body */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@600&family=Press+Start+2P&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Golos Text';
background-color: #EEF3EF;
}
/* Styles pour le header */
header {
max-width: 100vw;
}
header.container {
background-image: url('img/Degrade.svg');
background-position: center center;
background-size: cover;
display: flex;
justify-content: space-between;
padding: 20px;
overflow-y: auto; /* Ajoutez ceci pour permettre la barre de défilement verticale uniquement si nécessaire */
}
/* Styles pour le logo et le titre */
.header_logo {
display: flex;
align-items: center;
}
.logo {
margin-right: 10px;
}
h1.projects {
margin-top: -10px;
}
.title {
font-family: 'Press Start 2P';
font-size: 20pt;
color: #191A19;
}
/* Styles pour la navigation */
nav.logolien {
display: flex;
flex-direction: column;
align-items: flex-end;
}
/* Styles pour main et les projets */
main.main {
padding: 20px;
}
/* Styles de base pour les articles */
section.projects article {
max-width: 70%; /* Largeur maximale de la bulle */
padding: 10px 20px; /* Padding intérieur */
border-radius: 20px; /* Bords arrondis */
margin-bottom: 10px; /* Espacement entre les bulles */
background-color: #ECEEE6; /* Couleur de fond de la bulle */
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); /* Ombre pour donner du relief */
display: flex;
align-items: center;
}
/* Styles pour alterner la disposition des bulles */
section.projects article:nth-child(odd) {
margin-left: auto; /* Aligner à droite */
background-color: #ECEEE6; /* Couleur pour distinguer les bulles */
}
section.projects article:nth-child(even) {
margin-right: auto; /* Aligner à gauche */
background-color: #ECEEE6; /* Couleur pour distinguer les bulles */
}
/* Styles pour les images et textes dans les bulles */
.imageLeft {
border-radius: 15px;
height: 100px; /* Hauteur de l'image */
width: auto;
padding-left: 20px;
margin-left: 10px;
margin-right: 10px;
}
.imageRight {
border-radius: 15px;
height: 100px; /* Hauteur de l'image */
width: auto;
padding-right: 20px;
margin-right: 10px;
margin-left: 10px;
}
.textLeft {
text-align: right;
}
.textRight {
text-align: left;
}
/* Style général du footer */
footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
background-color: #f2f2f2; /* Couleur de fond du footer */
}
/* Style de la barre de recherche */
#bar {
width: 80%; /* Largeur de la barre */
height: 60px; /* Hauteur de la barre */
border: 1px solid #d1d1d1; /* Bordure subtile */
border-radius: 30px; /* Bords arrondis */
padding: 10px 20px; /* Padding intérieur */
font-size: 16px; /* Taille de la police */
color: #333; /* Couleur du texte */
background-color: #fff; /* Couleur de fond */
outline: none; /* Supprimer l'outline au focus */
}
/* Placeholder style */
#bar::placeholder {
color: #999; /* Couleur du placeholder */
}
/* Style du bouton (si nécessaire) */
button.flag {
margin-top: 20px;;
width: 120px;
border: none;
background-color: transparent;
cursor: pointer;
}
/* Style de l'icône dans le bouton */
button.flag img {
width: 120px; /* Taille de l'icône */
height: auto;
}
/* Styles de base */
a {
text-decoration: none;
color: inherit;
}
section.projects .containerRight {
display: flex;
flex-direction: row;
align-items: center;
}
section.projects .containerLeft {
display: flex;
flex-direction: row-reverse;
align-items: center;
}
.imageLeft, .imageRight {
width: auto;
margin: 0;
padding: 10px;
height: 200px;
border-radius: 25px;
}
.textLeft {
text-align: left;
padding-right: 20px;
}
.textRight {
text-align: right;
padding-left: 20px;
}
/* Adaptations responsive */
/* Media Queries pour ajuster sur les petits écrans */
@media screen and (max-width: 640px) {
/* Styles pour le logo et le titre */
.header_logo {
flex-direction: column;
align-items: center;
}
.logo {
margin-top: 2px;
margin-left: -55px;
width: 60px;
}
.title {
font-size: 12pt;
margin-top: 2px;
}
h1.projects {
font-size: 25px;
margin-right: 105px;
width: 55px;
}
/* Styles pour la navigation */
nav.logolien {
margin-top: 2px;
display: flex;
flex-direction: column;
align-items: flex-end;
width: 25px;
}
section.projects article {
max-width: 100%; /* Largeur plus grande sur petits écrans */
padding: 10px; /* Padding intérieur */
flex-direction: column; /* Les éléments sont empilés verticalement */
align-items: center; /* Centrage des éléments */
margin: auto; /* Aligner à gauche */
background-color: #ECEEE6; /* Couleur pour distinguer les bulles */
width: 95VW;
margin-top:20px;
}
/* Pour les images dans les projets */
.imageLeft, .imageRight {
max-width: 90%;
margin: 0;
padding: 0;
display: block; /* Assure que l'image est traitée comme un bloc */
}
/* Pour le texte dans les projets */
.textLeft, .textRight {
text-align: center; /* Texte centré */
margin: 10px 0; /* Marge pour espacer les éléments */
}
/* Adapter le container pour les petits écrans */
section.projects .containerLeft, section.projects .containerRight {
flex-direction: column; /* Les éléments sont empilés verticalement */
align-items: center; /* Centrage des éléments */
height: auto; /* Hauteur de l'image */
width: auto; /* Largeur de l'image */
margin: 5px;
padding: 5px;
}
}
/* Écrans moyens à grands (tablettes à ordinateurs de bureau) */
@media screen and (min-width: 641px) {
section.projects article:nth-child(odd) {
flex-direction: row;
justify-content: end;
align-items: center;
}
section.projects article:nth-child(even) {
flex-direction: row;
justify-content: start;
align-items: center;
}
.containerLeft, .containerRight {
flex-direction: row;
align-items: center;
}
.textLeft, .textRight {
text-align: left;
margin-left: 20px;
}
}
/* Écrans extra-larges (ordinateurs de bureau) */
@media screen and (min-width: 1025px) {
header.container, main.main {
/* max-width: 100vw; */
margin: 0 auto;
}
.textLeft {
text-align: right;
}
.textRight {
text-align: left;
}
}