0 Votes

Changes for page Home

Last modified by Alex Cotiugă on 2026/01/13 13:12

From version 7.136
edited by Alex Cotiugă
on 2025/11/17 09:08
Change comment: There is no comment for this version
To version 7.148
edited by Alex Cotiugă
on 2025/11/17 09:36
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -109,9 +109,17 @@
109 109   <p class="lead">
110 110   All the XWiki services you need, delivered with precision and care
111 111   </p>
112 +
113 + #set ($servicesSize = $servicesSectionData.size())
112 112   <div class="services-grid">
113 113   #foreach ($entry in $servicesSectionData)
114 - <article class="service">
116 + #set ($classes = "service")
117 + ## If this is the last item AND the total number is odd, center it
118 + #if ($foreach.count == $servicesSize && ($servicesSize % 2) == 1)
119 + #set ($classes = "service service-center")
120 + #end
121 +
122 + <article class="$classes">
115 115   <div class="service-icon">
116 116   <i class="fa fa-$entry.icon" aria-hidden="true"></i>
117 117   </div>
XWiki.StyleSheetExtension[0]
Code
... ... @@ -35,8 +35,11 @@
35 35  
36 36   .lead {
37 37   color: @muted;
38 - max-width: 72ch;
38 + text-align: center;
39 39   }
40 + h2 {
41 + text-align: center;
42 + }
40 40  
41 41   section {
42 42   padding: 32px 0;
... ... @@ -187,10 +187,15 @@
187 187   display: flex;
188 188   flex-wrap: wrap;
189 189   gap: 24px;
193 +
194 + /* center the whole block under the heading */
195 + max-width: 960px;
196 + margin-left: auto;
197 + margin-right: auto;
198 + justify-content: center;
190 190   }
191 191  
192 192   .service {
193 - /* 2 items per row: 50% minus half the gap so row fits in 100% */
194 194   flex: 0 1 calc(50% - 12px);
195 195   display: flex;
196 196   align-items: flex-start;
... ... @@ -217,13 +217,11 @@
217 217   font-size: 1.125rem;
218 218   font-weight: 800;
219 219   }
220 -
221 221   p {
222 222   margin: 0 0 6px;
223 223   color: @text;
224 224   line-height: 1.5;
225 225   }
226 -
227 227   ul {
228 228   margin: .45rem 0 0;
229 229   padding-left: 1.1rem;
... ... @@ -230,7 +230,6 @@
230 230   color: @muted;
231 231   font-size: 13px;
232 232   }
233 -
234 234   li {
235 235   margin: .25rem 0;
236 236   line-height: 1.45;
... ... @@ -238,9 +238,12 @@
238 238   }
239 239   }
240 240  
241 - /* Center the last item when odd:
242 - auto margins in a flex row push it to the middle */
246 + /* ==== Center last item on its own row while keeping 50% width ==== */
243 243   .service-center {
248 + /* same width as siblings */
249 + flex: 0 1 calc(55% - 12px);
250 +
251 + /* push to center */
244 244   margin-left: auto;
245 245   margin-right: auto;
246 246   }
... ... @@ -249,11 +249,12 @@
249 249   @media (max-width: 767px) {
250 250   .services-grid {
251 251   gap: 16px;
260 + max-width: 100%;
252 252   }
253 - .service {
254 - flex: 0 1 100%;
255 - }
262 +
263 + .service,
256 256   .service-center {
265 + flex: 0 1 100%;
257 257   margin-left: 0;
258 258   margin-right: 0;
259 259   }