Changes for page Home
Last modified by Alex Cotiugă on 2026/01/13 13:12
From version 7.139
edited by Alex Cotiugă
on 2025/11/17 09:23
on 2025/11/17 09:23
Change comment:
There is no comment for this version
To version 7.149
edited by Alex Cotiugă
on 2025/11/17 11:42
on 2025/11/17 11:42
Change comment:
There is no comment for this version
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -35,8 +35,11 @@ 35 35 36 36 .lead { 37 37 color: @muted; 38 - text-align: center ed;38 + text-align: center; 39 39 } 40 + h2 { 41 + text-align: center; 42 + } 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; 192 + 193 + /* center the whole block under the heading */ 194 + max-width: 960px; 195 + margin-left: auto; 196 + margin-right: auto; 197 + 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 */ 245 + /* ==== Center last item on its own row while keeping 50% width ==== */ 243 243 .service-center { 247 + /* same width as siblings */ 248 + flex: 0 1 calc(55% - 12px); 249 + 250 + /* 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; 259 + max-width: 100%; 252 252 } 253 - .service { 254 - flex: 0 1 100%; 255 - } 261 + 262 + .service, 256 256 .service-center { 264 + flex: 0 1 100%; 257 257 margin-left: 0; 258 258 margin-right: 0; 259 259 }