-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (62 loc) · 1.13 KB
/
style.css
File metadata and controls
76 lines (62 loc) · 1.13 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
68
69
70
71
72
73
74
75
76
body {
font-family: 'Helvetica', sans-serif;
margin: 0;
padding: 0;
background-color: #2c3e50; /* Gris foncé */
color: #ecf0f1; /* Couleur du texte */
}
.foot {
font-size: 20px;
background-color: #34495e; /* Bleu foncé */
color: white;
text-align: center;
padding: 1em;
border-radius: 10%;
}
#container {
max-width: 800px;
margin: 0 auto;
}
header {
background-color: #34495e; /* Bleu foncé */
color: white;
text-align: center;
padding: 1em;
}
section {
margin: 20px;
text-align: center;
.para {
color: #08eca7;
font-size: 25px;
}
}
#photos {
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
li {
display: inline-block;
margin: 10px;
}
img {
width: 450px; /* Remplacez cette valeur par la largeur souhaitée en pixels */
height: auto;
border: 2px solid #3498db;
border-radius: 8px;
}
h1 {
color: #d0d5d6;
text-align: center;
}
h2 {
color: #3498db;
text-align: center;
}
h3 {
color: #b5bcbd;
text-align: center;
}