Changes for page Public Web Site
Last modified by Agnease on 2026/07/03 16:14
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.StyleSheetExtension[0]
-
- code
-
... ... @@ -1811,5 +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 +} 1814 1814 1821 +#mainContentArea .resource-content .resources-grid .resource-card .service-icon { 1822 + grid-column: 1; 1823 + grid-row: 1; 1824 + margin: 0; 1825 +} 1815 1815 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 +