Changes for page Home
Last modified by Alex Cotiugă on 2026/01/13 13:12
From version 7.134
edited by Alex Cotiugă
on 2025/11/17 09:07
on 2025/11/17 09:07
Change comment:
There is no comment for this version
To version 7.152
edited by Alex Cotiugă
on 2025/11/17 11:46
on 2025/11/17 11:46
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
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
-
... ... @@ -29,14 +29,16 @@ 29 29 30 30 .container { 31 31 max-width: @maxw; 32 - margin: 0 auto; 33 - padding: 0 16px; 32 + padding: 0 20px; 34 34 } 35 35 36 36 .lead { 37 37 color: @muted; 38 - max-width:72ch;37 + 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 { ... ... @@ -186,16 +186,21 @@ 186 186 margin-top: 20px; 187 187 display: flex; 188 188 flex-wrap: wrap; 189 - gap: 24px; // space between items 190 + 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; 197 197 gap: 16px; 198 - margin-bottom: 8px; // extra vertical breathing room204 + margin-bottom: 8px; 199 199 200 200 .service-icon { 201 201 width: 42px; ... ... @@ -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 }