Changes for page Public Web Site

Last modified by Agnease on 2026/07/03 16:14

From version 28.6
edited by Agnease
on 2026/07/01 17:15
Change comment: There is no comment for this version
To version 28.11
edited by Agnease
on 2026/07/03 12:00
Change comment: There is no comment for this version

Summary

Details

XWiki.StyleSheetExtension[0]
code
... ... @@ -1811,3 +1811,33 @@
1811 1811   }
1812 1812  }
1813 1813  
1814 +#mainContentArea .resource-content .resources-grid .resource-card {
1815 + display: grid;
1816 + grid-template-columns: 44px minmax(0, 1fr);
1817 + column-gap: 14px;
1818 + align-items: center;
1819 +}
1820 +
1821 +#mainContentArea .resource-content .resources-grid .resource-card .service-icon {
1822 + grid-column: 1;
1823 + grid-row: 1;
1824 + margin: 0;
1825 +}
1826 +
1827 +#mainContentArea .resource-content .resources-grid .resource-card .service-body {
1828 + display: contents;
1829 +}
1830 +
1831 +#mainContentArea .resource-content .resources-grid .resource-card .service-body h4 {
1832 + grid-column: 2;
1833 + grid-row: 1;
1834 + align-self: center;
1835 + margin: 0;
1836 +}
1837 +
1838 +#mainContentArea .resource-content .resources-grid .resource-card .service-body p {
1839 + grid-column: 1 / -1;
1840 + grid-row: 2;
1841 + margin: 14px 0 0;
1842 +}
1843 +