forked from Charpentemars/Embarcadere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (96 loc) · 2.03 KB
/
style.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
body {
margin: 0;
font-family: Arial, sans-serif;
}
.container {
padding: 20px;
text-align: center;
}
#info h1,
#info h2 {
margin: 5px 0;
}
#info {
color: #000000;
font-size: 20px;
text-align: center;
}
#button {
padding: 10px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #4b9f9b;
color: #fff;
text-decoration: none;
border: 1px solid #4b9f9b;
border-radius: 5px;
}
.button:hover {
background-color: #3a7976;
border: 1px solid #3A7976FF;
}
#imgs {
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
.img-container {
width: 100%;
max-width: 500px; /* Réglage de la largeur maximale */
margin-bottom: 20px;
}
.img-container img {
width: 100%;
height: auto;
}
footer {
padding: 20px;
background-color: #4b9f9b;
color: #fff;
text-align: center;
}
#logo img {
margin-bottom: 10px;
max-width: 100%;
height: auto;
}
/* Media queries pour rendre le site responsive */
@media screen and (min-width: 576px) {
#imgs {
padding: 20px;
}
.img-container {
width: 48%; /* Deux images par ligne à partir de 576px */
margin-bottom: 20px;
}
.container {
max-width: 540px; /* Limite la largeur du conteneur à 540px à partir de 576px */
margin: 0 auto; /* Centre le conteneur */
}
#logo img {
width: 100%;
}
}
@media screen and (min-width: 768px) {
#imgs {
padding: 20px;
}
.img-container {
width: 48%; /* Deux images par ligne à partir de 768px */
margin-bottom: 20px;
}
.container {
max-width: 720px; /* Limite la largeur du conteneur à 720px à partir de 768px */
margin: 0 auto; /* Centre le conteneur */
}
}
@media screen and (min-width: 992px) {
.container {
max-width: 960px; /* Limite la largeur du conteneur à 960px à partir de 992px */
margin: 0 auto; /* Centre le conteneur */
}
}