Changes for page Home
Last modified by Alex Cotiugă on 2026/01/13 13:12
From version 7.137
edited by Alex Cotiugă
on 2025/11/17 09:09
on 2025/11/17 09:09
Change comment:
There is no comment for this version
To version 7.150
edited by Alex Cotiugă
on 2025/11/17 11:43
on 2025/11/17 11:43
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
-
... ... @@ -116,7 +116,7 @@ 116 116 #set ($classes = "service") 117 117 ## If this is the last item AND the total number is odd, center it 118 118 #if ($foreach.count == $servicesSize && ($servicesSize % 2) == 1) 119 - #set ($classes = "service service- -center")119 + #set ($classes = "service service-center") 120 120 #end 121 121 122 122 <article class="$classes">
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -29,14 +29,15 @@ 29 29 30 30 .container { 31 31 max-width: @maxw; 32 - margin: 0 auto; 33 - padding: 0 16px; 34 34 } 35 35 36 36 .lead { 37 37 color: @muted; 38 - max-width:72ch;36 + text-align: center; 39 39 } 38 + h2 { 39 + text-align: center; 40 + } 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; 190 + 191 + /* center the whole block under the heading */ 192 + max-width: 960px; 193 + margin-left: auto; 194 + margin-right: auto; 195 + 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 */ 243 + /* ==== Center last item on its own row while keeping 50% width ==== */ 243 243 .service-center { 245 + /* same width as siblings */ 246 + flex: 0 1 calc(55% - 12px); 247 + 248 + /* 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; 257 + max-width: 100%; 252 252 } 253 - .service { 254 - flex: 0 1 100%; 255 - } 259 + 260 + .service, 256 256 .service-center { 262 + flex: 0 1 100%; 257 257 margin-left: 0; 258 258 margin-right: 0; 259 259 }