-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
156 lines (135 loc) · 2.99 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
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
body {
font-family: 'Roboto', sans-serif;
color: #333;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
margin: 0 0 10px 0;
color: #2c3e50;
}
p {
line-height: 1.6;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header,footer {
/*color: #333;*/
text-align: center;
}
/* Layout styles */
#filters {
display: flex;
flex-direction: row;
align-items: center;
font-size: 18px;
padding: 20px;
border-bottom: 2px solid #ddd;
}
#filters div {
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
margin-bottom: 10px;
}
/*#filters label {
font-weight: bold;
font-size: 18px;
margin-right: 10px;
}*/
#filters select,
#filters input[type="checkbox"] {
padding: 10px;
margin-top: 5px;
font-size: 16px;
}
#search-input {
width: 25%;
display: block;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
#results {
display: flex;
flex-direction: row;
height: calc(100vh - 2 * 3em); /* Ajuste la hauteur en fonction de la hauteur du header et du footer */
margin-top: 10px;
justify-content: center;
}
#associations-list {
margin-right: 50px;
width: 35%;
padding: 15px;
overflow-y: auto; /* Permet de défiler si le contenu dépasse */
}
#map {
position: relative;
background-color: #e9ecef;
width: 60%;
border-radius: 10px;
}
.association-item {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #fff;
border: 1px solid #ddd;
border-radius: 10px;
padding: 15px;
margin-bottom: 15px;
padding: 10px;
transition: transform 0.2s ease;
}
.association-item h3 {
margin-bottom: 10px;
color: #2c3e50;
}
.association-item p {
color: #7f8c8d;
}
.association-item a {
color: #3498db;
font-weight: bold;
}
.association-item:hover {
transform: scale(1.02);
}
.object-text {
display: -webkit-box; /* Utilise le modèle de boîte flexible de Webkit */
-webkit-box-orient: vertical; /* Définit l'orientation de la boîte en vertical */
-webkit-line-clamp: 3;
line-clamp: 3; /* Limite le nombre de lignes affichées à 3 */
overflow: hidden; /* Cache le texte qui dépasse */
text-overflow: ellipsis; /* Ajoute une ellipse (...) à la fin du texte tronqué */
white-space: normal; /* Assure que l'espace blanc est traité normalement */
}
/* Responsive styles */
@media (max-width: 768px) {
#results {
flex-direction: column;
padding: 10px;
align-items: center;
}
#associations-list {
width: 100%;
height: 300px;
margin: 15px;
}
#map {
width: 100%;
height: 400px;
}
#filters {
flex-direction: column;
padding: 10px;
}
}