0 Votes

Changes for page Home

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

From version 7.22
edited by Alex Cotiugă
on 2025/11/13 10:44
Change comment: There is no comment for this version
To version 7.23
edited by Alex Cotiugă
on 2025/11/13 10:45
Change comment: There is no comment for this version

Summary

Details

XWiki.StyleSheetExtension[0]
Code
... ... @@ -179,22 +179,77 @@
179 179   }
180 180  
181 181   /* SERVICES */
182 - .services {
183 - display: grid; gap: 16px; grid-template-columns: 1fr;
184 - @media (min-width: 920px) { grid-template-columns: repeat(3, 1fr); }
185 - }
186 - .card {
187 - background: #fff; border: 1px solid @line; border-radius: @radius;
188 - padding: 18px; box-shadow: @shadow-sm; transition: transform .18s ease, box-shadow .18s ease;
182 + .services-sub {
183 + margin: 0 0 1.25rem;
184 + color: #5b6a72;
185 + }
189 189  
190 - &:hover { transform: translateY(-2px); box-shadow: @shadow; }
191 - p { color: @muted; margin: 0; }
192 - details {
193 - margin-top: .6rem; border-top: 1px dashed @line; padding-top: .6rem;
194 - summary { cursor: pointer; font-weight: 650; }
187 + /* Feature list layout */
188 + .feature-list {
189 + list-style: none;
190 + margin: 0;
191 + padding: 0;
195 195   }
196 - }
197 197  
194 + /* Each item is a two-column media object: icon + content */
195 + .feature-list li {
196 + display: grid;
197 + grid-template-columns: 28px 1fr;
198 + gap: 14px;
199 + padding: 16px 0;
200 + border-top: 1px solid rgba(0,0,0,0.08);
201 + }
202 + .feature-list li:first-child {
203 + border-top: none;
204 + }
205 +
206 + /* Icon */
207 + .feature-list i {
208 + color: #008e78; /* brand accent */
209 + font-size: 20px;
210 + line-height: 1;
211 + margin-top: 3px; /* optical align with title */
212 + }
213 +
214 + /* Content block */
215 + .feature-list .content h3 {
216 + margin: 0 0 4px;
217 + font-size: 1.125rem; /* 18px */
218 + font-weight: 700;
219 + }
220 + .feature-list .content p {
221 + margin: 0 0 6px;
222 + color: #2c3940;
223 + line-height: 1.5;
224 + }
225 +
226 + /* Details link (consistent button-ish link) */
227 + .feature-list .details {
228 + display: inline-block;
229 + font-weight: 700;
230 + color: #0a3c37;
231 + text-decoration: none;
232 + border: 1.5px solid #008e78;
233 + background: #e8fbf7;
234 + border-radius: 10px;
235 + padding: 6px 10px;
236 + }
237 + .feature-list .details:hover {
238 + background: #d7f6ef;
239 + }
240 +
241 + /* Responsive: slightly looser spacing on small screens */
242 + @media (max-width: 640px) {
243 + .feature-list li {
244 + gap: 12px;
245 + padding: 14px 0;
246 + }
247 + .feature-list i {
248 + font-size: 18px;
249 + margin-top: 4px;
250 + }
251 + }
252 +
198 198   /* METRICS */
199 199   .metrics {
200 200   display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr);