imio.smartweb.core 1.2.74__py3-none-any.whl → 1.2.76__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
- imio/smartweb/core/browser/static/src/view.less +106 -57
- imio/smartweb/core/contents/pages/configure.zcml +1 -0
- imio/smartweb/core/contents/pages/views.py +44 -0
- imio/smartweb/core/contents/sections/contact/macros.pt +28 -3
- imio/smartweb/core/contents/sections/contact/view.py +28 -12
- imio/smartweb/core/contents/sections/events/view.py +1 -1
- imio/smartweb/core/contents/sections/news/view.py +1 -1
- imio/smartweb/core/tests/test_section_contact.py +35 -10
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +364 -378
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss +401 -417
- imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +174 -172
- imio/smartweb/core/webcomponents/src/components/News/News.scss +145 -130
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +35 -14
- imio/smartweb/core/webcomponents/src/components/Search/Search.scss +117 -118
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/METADATA +20 -1
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/RECORD +23 -23
- /imio.smartweb.core-1.2.74-py3.12-nspkg.pth → /imio.smartweb.core-1.2.76-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/top_level.txt +0 -0
@@ -1,221 +1,214 @@
|
|
1
1
|
html,
|
2
2
|
body {
|
3
|
-
|
4
|
-
|
3
|
+
max-width: 100%;
|
4
|
+
overflow-x: initial !important;
|
5
5
|
}
|
6
6
|
|
7
7
|
.row {
|
8
|
-
|
9
|
-
|
8
|
+
padding: 0;
|
9
|
+
margin: 0;
|
10
10
|
}
|
11
11
|
|
12
12
|
.breadcrumb {
|
13
|
-
|
13
|
+
padding: 0;
|
14
14
|
}
|
15
15
|
|
16
16
|
// FOR SCROLL
|
17
17
|
|
18
18
|
body .outer-wrapper {
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
}
|
19
|
+
& > .container {
|
20
|
+
max-width: 100% !important;
|
21
|
+
padding: 0 !important;
|
22
|
+
}
|
24
23
|
}
|
25
24
|
|
26
25
|
.r-annuaire-wrapper {
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
26
|
+
@media screen and (min-width: 1200px) {
|
27
|
+
max-width: 100%;
|
28
|
+
margin-right: inherit;
|
29
|
+
padding-right: 0;
|
30
|
+
padding-left: 0;
|
31
|
+
}
|
33
32
|
}
|
34
33
|
|
35
34
|
#portal-column-content {
|
36
|
-
|
35
|
+
padding: 0 !important;
|
37
36
|
}
|
38
37
|
|
39
|
-
|
40
|
-
|
41
38
|
#portal-column-content {
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
39
|
+
h1 {
|
40
|
+
font-size: 0px;
|
41
|
+
position: absolute;
|
42
|
+
}
|
46
43
|
}
|
47
44
|
|
48
45
|
header#content-header {
|
49
|
-
|
50
|
-
|
51
|
-
|
46
|
+
position: sticky;
|
47
|
+
top: 0;
|
48
|
+
background: #fff;
|
52
49
|
}
|
53
50
|
|
54
51
|
#viewlet-below-content-title,
|
55
52
|
#viewlet-below-content-description {
|
56
|
-
|
53
|
+
display: none;
|
57
54
|
}
|
58
55
|
|
59
|
-
article>header {
|
60
|
-
|
56
|
+
article > header {
|
57
|
+
margin-bottom: 0px;
|
61
58
|
}
|
62
59
|
|
63
60
|
.r-annuaire-result {
|
64
|
-
|
61
|
+
grid-area: 1 / 1 / 3 / 2;
|
65
62
|
}
|
66
63
|
|
67
64
|
.r-map.annuaire-map {
|
68
|
-
|
69
|
-
|
65
|
+
position: sticky;
|
66
|
+
grid-area: 1 / 2 / 2 / 3;
|
70
67
|
}
|
71
68
|
|
72
|
-
|
73
69
|
/////////
|
74
70
|
|
75
71
|
.r-wrapper {
|
76
|
-
|
77
|
-
|
78
|
-
@media screen and (min-width:1200px) {
|
79
|
-
display: grid;
|
80
|
-
grid-template-columns: minmax(20px, 800px) minmax(20px, 100%);
|
81
|
-
justify-content: space-between;
|
82
|
-
width: calc(558px + 50vw);
|
83
|
-
margin-left: auto;
|
84
|
-
gap: 40px;
|
85
|
-
}
|
86
|
-
|
87
|
-
@media screen and (min-width:1400px) {
|
88
|
-
width: calc(648px + 50vw);
|
89
|
-
}
|
90
|
-
|
91
|
-
.r-result {
|
92
|
-
padding-bottom: 2rem;
|
93
|
-
|
94
|
-
&-list {
|
95
|
-
padding: 0;
|
96
|
-
|
97
|
-
.r-list-item-group {
|
98
|
-
position: relative;
|
99
|
-
list-style: none;
|
100
|
-
margin: 1rem 0;
|
101
|
-
|
102
|
-
.r-list-item-link {
|
103
|
-
inset: 0px !important;
|
104
|
-
position: absolute !important;
|
105
|
-
}
|
106
|
-
|
107
|
-
.r-list-item {
|
108
|
-
display: flex;
|
109
|
-
height: 100%;
|
110
|
-
flex-direction: column;
|
111
|
-
|
112
|
-
@media screen and (min-width:600px) {
|
113
|
-
flex-direction: row;
|
114
|
-
}
|
115
|
-
|
116
|
-
.r-item-img {
|
117
|
-
width: 100%;
|
118
|
-
padding-bottom: 56%;
|
119
|
-
position: relative;
|
120
|
-
z-index: -1;
|
121
|
-
background-color: #000;
|
122
|
-
|
123
|
-
&.r-item-img-placeholder {
|
124
|
-
background-color: #f2f2f2;
|
125
|
-
}
|
126
|
-
|
127
|
-
@media screen and (min-width:600px) {
|
128
|
-
width: 246px;
|
129
|
-
height: 149px;
|
130
|
-
padding-bottom: 0;
|
131
|
-
flex: 246px 0 0;
|
132
|
-
}
|
133
|
-
|
134
|
-
background-size: cover;
|
135
|
-
border-radius: 5px;
|
136
|
-
|
137
|
-
div,
|
138
|
-
img {
|
139
|
-
border-radius: 5px;
|
140
|
-
}
|
141
|
-
}
|
142
|
-
|
143
|
-
.r-item-text {
|
144
|
-
margin-top: 0.6rem;
|
145
|
-
|
146
|
-
@media screen and (min-width:600px) {
|
147
|
-
margin-left: 1.5rem;
|
148
|
-
margin-top: 0;
|
149
|
-
}
|
150
|
-
|
151
|
-
flex-grow: 1;
|
72
|
+
display: block;
|
152
73
|
|
153
|
-
|
154
|
-
|
155
|
-
|
74
|
+
@media screen and (min-width: 1200px) {
|
75
|
+
display: grid;
|
76
|
+
grid-template-columns: minmax(20px, 800px) minmax(20px, 100%);
|
77
|
+
justify-content: space-between;
|
78
|
+
width: calc(558px + 50vw);
|
79
|
+
margin-left: auto;
|
80
|
+
gap: 40px;
|
81
|
+
}
|
156
82
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
}
|
83
|
+
@media screen and (min-width: 1400px) {
|
84
|
+
width: calc(648px + 50vw);
|
85
|
+
}
|
161
86
|
|
162
|
-
|
163
|
-
|
164
|
-
}
|
87
|
+
.r-result {
|
88
|
+
padding-bottom: 2rem;
|
165
89
|
|
166
|
-
|
167
|
-
|
168
|
-
gap: 10px;
|
90
|
+
&-list {
|
91
|
+
padding: 0;
|
169
92
|
|
170
|
-
|
171
|
-
|
172
|
-
|
93
|
+
.r-list-item-group {
|
94
|
+
position: relative;
|
95
|
+
list-style: none;
|
96
|
+
margin: 1rem 0;
|
173
97
|
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
}
|
98
|
+
.r-list-item-link {
|
99
|
+
inset: 0px !important;
|
100
|
+
position: absolute !important;
|
101
|
+
}
|
179
102
|
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
103
|
+
.r-list-item {
|
104
|
+
display: flex;
|
105
|
+
height: 100%;
|
106
|
+
flex-direction: column;
|
107
|
+
|
108
|
+
@media screen and (min-width: 600px) {
|
109
|
+
flex-direction: row;
|
110
|
+
}
|
111
|
+
|
112
|
+
.r-item-img {
|
113
|
+
width: 100%;
|
114
|
+
padding-bottom: 56%;
|
115
|
+
position: relative;
|
116
|
+
z-index: -1;
|
117
|
+
background-color: #000;
|
118
|
+
background-size: cover;
|
119
|
+
border-radius: 5px;
|
120
|
+
&.r-item-img-placeholder {
|
121
|
+
background-color: #f2f2f2;
|
122
|
+
}
|
123
|
+
|
124
|
+
@media screen and (min-width: 600px) {
|
125
|
+
width: 246px;
|
126
|
+
height: 149px;
|
127
|
+
padding-bottom: 0;
|
128
|
+
flex: 246px 0 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
div,
|
132
|
+
img {
|
133
|
+
border-radius: 5px;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
.r-item-text {
|
138
|
+
margin-top: 0.6rem;
|
139
|
+
flex-grow: 1;
|
140
|
+
|
141
|
+
@media screen and (min-width: 600px) {
|
142
|
+
margin-left: 1.5rem;
|
143
|
+
margin-top: 0;
|
144
|
+
}
|
145
|
+
|
146
|
+
a {
|
147
|
+
position: relative;
|
148
|
+
}
|
149
|
+
|
150
|
+
.r-item-title {
|
151
|
+
font-weight: bold;
|
152
|
+
display: block;
|
153
|
+
}
|
154
|
+
|
155
|
+
.r-item-categorie {
|
156
|
+
display: block;
|
157
|
+
}
|
158
|
+
|
159
|
+
.r-item-all {
|
160
|
+
display: flex;
|
161
|
+
gap: 10px;
|
162
|
+
|
163
|
+
.r-item-adresse {
|
164
|
+
width: 36%;
|
165
|
+
}
|
166
|
+
|
167
|
+
.phones {
|
168
|
+
display: flex;
|
169
|
+
gap: 0 5px;
|
170
|
+
flex-wrap: wrap;
|
171
|
+
}
|
172
|
+
|
173
|
+
.mails {
|
174
|
+
display: flex;
|
175
|
+
flex-direction: column;
|
176
|
+
}
|
177
|
+
}
|
178
|
+
}
|
179
|
+
}
|
184
180
|
}
|
185
|
-
}
|
186
181
|
}
|
187
|
-
}
|
188
182
|
}
|
189
|
-
}
|
190
183
|
}
|
191
184
|
|
192
185
|
// content
|
193
186
|
.r-content-description {
|
194
|
-
|
187
|
+
border-bottom: solid 1px #e6e6e6;
|
195
188
|
}
|
196
189
|
|
197
190
|
.contactTextAll {
|
198
|
-
|
199
|
-
|
191
|
+
margin-top: 1rem;
|
192
|
+
position: relative;
|
200
193
|
|
201
|
-
|
202
|
-
|
203
|
-
|
194
|
+
@media screen and (min-width: 700px) {
|
195
|
+
padding-right: 128px;
|
196
|
+
}
|
204
197
|
|
205
|
-
|
206
|
-
|
207
|
-
|
198
|
+
.annuaire-logo {
|
199
|
+
margin-top: 0.5rem;
|
200
|
+
max-width: 128px;
|
208
201
|
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
202
|
+
@media screen and (min-width: 700px) {
|
203
|
+
position: absolute;
|
204
|
+
top: 0;
|
205
|
+
right: 0;
|
206
|
+
}
|
213
207
|
}
|
214
|
-
}
|
215
208
|
}
|
216
209
|
|
217
210
|
.annuaire-info-title {
|
218
|
-
|
211
|
+
font-weight: bold;
|
219
212
|
}
|
220
213
|
|
221
214
|
.annuaire-website-link,
|
@@ -224,296 +217,289 @@ article>header {
|
|
224
217
|
.annuaire-website-mails,
|
225
218
|
.annuaire-social-link,
|
226
219
|
.annuaire-schedul {
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
220
|
+
display: flex;
|
221
|
+
gap: 10px;
|
222
|
+
align-items: first baseline;
|
223
|
+
margin-bottom: 0.5rem;
|
224
|
+
|
225
|
+
a {
|
226
|
+
text-decoration: none;
|
227
|
+
}
|
235
228
|
}
|
236
229
|
|
237
230
|
.annuaire-phone,
|
238
231
|
.annuaire-website-mails {
|
239
|
-
|
240
|
-
|
241
|
-
|
232
|
+
span {
|
233
|
+
display: block;
|
234
|
+
font-weight: 500;
|
242
235
|
|
243
|
-
|
244
|
-
|
236
|
+
a {
|
237
|
+
font-weight: 400;
|
238
|
+
}
|
245
239
|
}
|
246
|
-
}
|
247
240
|
}
|
248
241
|
|
249
242
|
.annuaire-website-mails {
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
display: block;
|
243
|
+
div {
|
244
|
+
span {
|
245
|
+
display: block;
|
246
|
+
}
|
255
247
|
}
|
256
|
-
}
|
257
248
|
}
|
258
249
|
|
259
|
-
|
260
250
|
.annuaire-social-link {
|
261
|
-
|
251
|
+
margin: 0.5rem 0;
|
262
252
|
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
253
|
+
ul {
|
254
|
+
display: flex;
|
255
|
+
gap: 10px;
|
256
|
+
margin: 0;
|
267
257
|
|
268
|
-
|
269
|
-
|
258
|
+
li {
|
259
|
+
list-style: none;
|
260
|
+
}
|
270
261
|
}
|
271
|
-
}
|
272
262
|
}
|
273
263
|
|
274
264
|
.annuaire-website-link {
|
275
|
-
|
276
|
-
// display: flex;
|
277
|
-
// gap: 10px;
|
278
|
-
// position: relative;
|
279
|
-
// overflow: hidden;
|
280
|
-
// margin: .5rem 0;
|
281
|
-
ul {
|
282
|
-
|
283
265
|
// display: flex;
|
284
|
-
//
|
285
|
-
//
|
286
|
-
//
|
287
|
-
// margin
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
266
|
+
// gap: 10px;
|
267
|
+
// position: relative;
|
268
|
+
// overflow: hidden;
|
269
|
+
// margin: .5rem 0;
|
270
|
+
ul {
|
271
|
+
// display: flex;
|
272
|
+
// flex-direction: row;
|
273
|
+
// flex-wrap: wrap;
|
274
|
+
// margin-left: -.5em;
|
275
|
+
// margin-bottom: 0;
|
276
|
+
li {
|
277
|
+
// padding: 0 .5em;
|
278
|
+
// text-align: center;
|
279
|
+
// border-left: 1.5px solid #000;
|
280
|
+
// background-color: #fff;
|
281
|
+
list-style: none;
|
282
|
+
// line-height: 0.8;
|
283
|
+
// margin: .3rem 0;
|
284
|
+
}
|
296
285
|
}
|
297
|
-
}
|
298
286
|
}
|
299
287
|
|
300
288
|
.annuaire-day-close {
|
301
|
-
|
289
|
+
color: #e61d1d;
|
302
290
|
}
|
303
291
|
|
304
292
|
.annuaire-day-open {
|
305
|
-
|
293
|
+
color: rgba(129, 201, 149, 1);
|
306
294
|
}
|
307
295
|
|
308
296
|
.annuaire-schedul {
|
309
|
-
|
310
|
-
|
311
|
-
|
297
|
+
li {
|
298
|
+
list-style: none;
|
299
|
+
}
|
312
300
|
}
|
313
301
|
|
314
302
|
// FOR BLA
|
315
303
|
|
316
304
|
.r-wrapper {
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
305
|
+
.r-result {
|
306
|
+
&-list {
|
307
|
+
.r-list-item-group {
|
308
|
+
.r-list-item {
|
309
|
+
.r-item-img {
|
310
|
+
}
|
311
|
+
|
312
|
+
.r-item-text {
|
313
|
+
font-size: 13px;
|
314
|
+
|
315
|
+
&:after {
|
316
|
+
content: "";
|
317
|
+
width: 50px;
|
318
|
+
height: 50px;
|
319
|
+
background: yellow;
|
320
|
+
border-radius: 50px;
|
321
|
+
}
|
322
|
+
|
323
|
+
.r-item-title {
|
324
|
+
font-size: 18px;
|
325
|
+
}
|
326
|
+
|
327
|
+
.r-item-categorie {
|
328
|
+
margin-bottom: 5px;
|
329
|
+
}
|
330
|
+
|
331
|
+
.r-item-all {
|
332
|
+
color: #727272;
|
333
|
+
|
334
|
+
a {
|
335
|
+
color: #000;
|
336
|
+
}
|
337
|
+
|
338
|
+
.r-item-adresse {
|
339
|
+
.itineraty {
|
340
|
+
margin-top: 5px;
|
341
|
+
|
342
|
+
&:before {
|
343
|
+
content: "";
|
344
|
+
width: 15px;
|
345
|
+
height: 15px;
|
346
|
+
display: inline-block;
|
347
|
+
background-size: contain;
|
348
|
+
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.68 10.97'%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='Calque_1-2' data-name='Calque 1'%3E%3Cpath id='map-marker' d='M3.84,5.21A1.37,1.37,0,1,1,5.21,3.84h0A1.37,1.37,0,0,1,3.84,5.21M3.84,0A3.84,3.84,0,0,0,0,3.84H0C0,6.72,3.84,11,3.84,11S7.68,6.72,7.68,3.84A3.84,3.84,0,0,0,3.84,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
|
349
|
+
no-repeat;
|
350
|
+
vertical-align: middle;
|
351
|
+
}
|
352
|
+
}
|
353
|
+
}
|
354
|
+
|
355
|
+
.r-item-contact {
|
356
|
+
width: 100%;
|
357
|
+
.topics {
|
358
|
+
margin-top: 10px;
|
359
|
+
span {
|
360
|
+
padding: 5px;
|
361
|
+
background: #f1f1f1;
|
362
|
+
border-radius: 5px;
|
363
|
+
margin-right: 5px;
|
364
|
+
}
|
365
|
+
}
|
366
|
+
}
|
367
|
+
}
|
368
|
+
}
|
363
369
|
}
|
364
|
-
}
|
365
|
-
|
366
|
-
.r-item-contact {
|
367
|
-
width: 100%;
|
368
|
-
.topics {
|
369
|
-
margin-top: 10px;
|
370
|
-
span {
|
371
|
-
padding: 5px;
|
372
|
-
background: #f1f1f1;
|
373
|
-
border-radius: 5px;
|
374
|
-
margin-right: 5px;
|
375
|
-
|
376
|
-
}
|
377
|
-
}
|
378
|
-
}
|
379
370
|
}
|
380
|
-
}
|
381
371
|
}
|
382
|
-
}
|
383
372
|
}
|
384
|
-
}
|
385
|
-
|
386
373
|
}
|
387
374
|
|
388
375
|
.r-load-more {
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
376
|
+
margin-bottom: 2rem;
|
377
|
+
text-align: center;
|
378
|
+
|
379
|
+
button {
|
380
|
+
background: #000;
|
381
|
+
border: solid 1px transparent;
|
382
|
+
color: #fff;
|
383
|
+
padding: 0.4rem 1rem;
|
384
|
+
border-radius: 10px;
|
385
|
+
border-bottom-left-radius: 10px;
|
386
|
+
border-bottom-left-radius: 0px;
|
387
|
+
font-weight: bold;
|
388
|
+
font-size: 14px;
|
389
|
+
margin: 0 auto;
|
390
|
+
display: block;
|
391
|
+
|
392
|
+
&:hover {
|
393
|
+
background: rgba(0, 0, 0, 0.871);
|
394
|
+
}
|
407
395
|
}
|
408
|
-
}
|
409
396
|
}
|
410
397
|
|
411
398
|
.r-map {
|
412
|
-
|
413
|
-
|
414
|
-
|
399
|
+
@media screen and (max-width: 1200px) {
|
400
|
+
margin-top: 2rem !important;
|
401
|
+
}
|
415
402
|
|
416
|
-
|
417
|
-
|
418
|
-
|
403
|
+
.leaflet-container {
|
404
|
+
@media screen and (max-width: 1200px) {
|
405
|
+
height: 50vh !important;
|
406
|
+
}
|
419
407
|
}
|
420
|
-
}
|
421
408
|
}
|
422
409
|
|
423
|
-
|
424
|
-
|
425
410
|
// // No Map
|
426
411
|
// // Main
|
427
412
|
.no-map {
|
428
|
-
|
429
|
-
|
430
|
-
display: block;
|
431
|
-
}
|
432
|
-
|
433
|
-
.r-wrapper {
|
434
|
-
.r-result-list {
|
435
|
-
max-width: 1296px;
|
436
|
-
display: grid;
|
437
|
-
grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
|
438
|
-
gap: 20px;
|
439
|
-
}
|
440
|
-
|
441
|
-
.r-list-item-group {
|
442
|
-
display: block !important;
|
443
|
-
transition: all .2s ease;
|
444
|
-
|
445
|
-
&:hover,
|
446
|
-
&:focus {
|
447
|
-
transform: translateY(-10px) !important;
|
448
|
-
}
|
449
|
-
|
450
|
-
.r-list-item {
|
451
|
-
flex-direction: column !important;
|
452
|
-
box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
|
453
|
-
|
454
|
-
.r-item-img {
|
455
|
-
flex: inherit;
|
456
|
-
width: 100% !important;
|
457
|
-
aspect-ratio: 5 / 3;
|
458
|
-
margin-bottom: 0;
|
459
|
-
height: auto;
|
460
|
-
}
|
461
|
-
|
462
|
-
.r-item-text {
|
413
|
+
@media screen and (min-width: 600px) {
|
414
|
+
.r-annuaire-wrapper {
|
463
415
|
display: block;
|
464
|
-
|
465
|
-
margin-bottom: .5rem;
|
466
|
-
margin-top: .5rem;
|
467
|
-
|
468
|
-
&:after {
|
469
|
-
display: none;
|
470
|
-
}
|
471
|
-
|
472
|
-
.r-item-categorie {
|
473
|
-
margin-bottom: .25rem;
|
474
|
-
margin-top: .25rem;
|
475
|
-
}
|
416
|
+
}
|
476
417
|
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
418
|
+
.r-wrapper {
|
419
|
+
.r-result-list {
|
420
|
+
max-width: 1296px;
|
421
|
+
display: grid;
|
422
|
+
grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
|
423
|
+
gap: 20px;
|
481
424
|
}
|
482
425
|
|
483
|
-
.r-item-
|
484
|
-
|
485
|
-
|
486
|
-
.r-item-adresse {
|
487
|
-
margin-bottom: .25rem;
|
488
|
-
margin-top: .25rem;
|
489
|
-
width: auto;
|
490
|
-
}
|
426
|
+
.r-list-item-group {
|
427
|
+
display: block !important;
|
428
|
+
transition: all 0.2s ease;
|
491
429
|
|
492
|
-
|
430
|
+
&:hover,
|
431
|
+
&:focus {
|
432
|
+
transform: translateY(-10px) !important;
|
433
|
+
}
|
493
434
|
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
435
|
+
.r-list-item {
|
436
|
+
flex-direction: column !important;
|
437
|
+
box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
|
438
|
+
|
439
|
+
.r-item-img {
|
440
|
+
flex: inherit;
|
441
|
+
width: 100% !important;
|
442
|
+
aspect-ratio: 5 / 3;
|
443
|
+
margin-bottom: 0;
|
444
|
+
height: auto;
|
445
|
+
}
|
446
|
+
|
447
|
+
.r-item-text {
|
448
|
+
display: block;
|
449
|
+
margin-right: 1.5rem;
|
450
|
+
margin-bottom: 0.5rem;
|
451
|
+
margin-top: 0.5rem;
|
452
|
+
|
453
|
+
&:after {
|
454
|
+
display: none;
|
455
|
+
}
|
456
|
+
|
457
|
+
.r-item-categorie {
|
458
|
+
margin-bottom: 0.25rem;
|
459
|
+
margin-top: 0.25rem;
|
460
|
+
}
|
461
|
+
|
462
|
+
.r-item-title {
|
463
|
+
margin-bottom: 0.25rem;
|
464
|
+
margin-top: 0.25rem;
|
465
|
+
font-size: 16px;
|
466
|
+
}
|
467
|
+
|
468
|
+
.r-item-all {
|
469
|
+
display: block !important;
|
470
|
+
|
471
|
+
.r-item-adresse {
|
472
|
+
margin-bottom: 0.25rem;
|
473
|
+
margin-top: 0.25rem;
|
474
|
+
width: auto;
|
475
|
+
}
|
476
|
+
|
477
|
+
.phones {
|
478
|
+
}
|
479
|
+
|
480
|
+
.mails,
|
481
|
+
.phones,
|
482
|
+
.topics {
|
483
|
+
margin-bottom: 0.25rem;
|
484
|
+
margin-top: 0.25rem;
|
485
|
+
}
|
486
|
+
}
|
487
|
+
}
|
488
|
+
}
|
500
489
|
}
|
501
|
-
}
|
502
490
|
}
|
503
|
-
}
|
504
491
|
}
|
505
|
-
}
|
506
492
|
}
|
507
493
|
|
508
494
|
// content
|
509
495
|
|
510
496
|
.no-map {
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
}
|
497
|
+
.r-result.r-annuaire-result {
|
498
|
+
max-width: 1296px;
|
499
|
+
}
|
500
|
+
|
501
|
+
.annuaire-content {
|
502
|
+
max-width: 700px;
|
503
|
+
margin: 0 auto;
|
504
|
+
}
|
505
|
+
}
|