0 Votes

Changes for page Home

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

From version 7.140
edited by Alex Cotiugă
on 2025/11/17 09:23
Change comment: There is no comment for this version
To version 7.151
edited by Alex Cotiugă
on 2025/11/17 11:45
Change comment: There is no comment for this version

Summary

Details

XWiki.StyleSheetExtension[0]
Code
... ... @@ -29,8 +29,7 @@
29 29  
30 30   .container {
31 31   max-width: @maxw;
32 - margin: 0 auto;
33 - padding: 0 16px;
32 + padding: 0;
34 34   }
35 35  
36 36   .lead {
... ... @@ -37,6 +37,9 @@
37 37   color: @muted;
38 38   text-align: center;
39 39   }
39 + h2 {
40 + text-align: center;
41 + }
40 40  
41 41   section {
42 42   padding: 32px 0;
... ... @@ -99,7 +99,6 @@
99 99   display: flex;
100 100   flex-direction: column;
101 101   align-items: center;
102 - gap: 1rem;
103 103   }
104 104  
105 105   .hero-cta {
... ... @@ -187,10 +187,15 @@
187 187   display: flex;
188 188   flex-wrap: wrap;
189 189   gap: 24px;
191 +
192 + /* center the whole block under the heading */
193 + max-width: 960px;
194 + margin-left: auto;
195 + margin-right: auto;
196 + 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 */
244 + /* ==== Center last item on its own row while keeping 50% width ==== */
243 243   .service-center {
246 + /* same width as siblings */
247 + flex: 0 1 calc(55% - 12px);
248 +
249 + /* 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;
258 + max-width: 100%;
252 252   }
253 - .service {
254 - flex: 0 1 100%;
255 - }
260 +
261 + .service,
256 256   .service-center {
263 + flex: 0 1 100%;
257 257   margin-left: 0;
258 258   margin-right: 0;
259 259   }