Changes for page Service Navigator
Last modified by Veronika Kocher on Thursday, 03 Sep 2026 14:15
From version 1.1
edited by ZID Server
on Tuesday, 14 Jul 2026 15:01
on Tuesday, 14 Jul 2026 15:01
Change comment:
There is no comment for this version
To version 2.2
edited by ZID Server
on Tuesday, 14 Jul 2026 15:06
on Tuesday, 14 Jul 2026 15:06
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
-
... ... @@ -1,0 +1,51 @@ 1 +{{html}} 2 +<div class="rh-grid"> 3 + 4 + <div class="rh-col"> 5 + <a class="rh-img" href="#"></a> 6 + <div class="rh-body"> 7 + <h3 class="rh-heading"><a href="#"><span class="rh-num">1.</span> Planning & Set-up</a></h3> 8 + <p class="rh-desc">Resources for preparation of your research</p> 9 + <div class="rh-cards"> 10 + <a class="rh-card rh-flame1" href="#">Data Management</a> 11 + <a class="rh-card rh-flame2" href="#">Research Strategy and Funding</a> 12 + <a class="rh-card rh-flame3" href="#">Research Strategy and Funding</a> 13 + <a class="rh-card rh-flame4" href="#">Responsible and Compliant Research</a> 14 + </div> 15 + <a class="rh-btn rh-btn-yellow" href="#">Explore Planning & Set-up</a> 16 + </div> 17 + </div> 18 + 19 + <div class="rh-col"> 20 + <a class="rh-img" href="#"></a> 21 + <div class="rh-body"> 22 + <h3 class="rh-heading"><a href="#"><span class="rh-num">2.</span> Execution</a></h3> 23 + <p class="rh-desc">Daily support resources during your project</p> 24 + <div class="rh-cards"> 25 + <a class="rh-card rh-flame5" href="#">Collaboration Tools</a> 26 + <a class="rh-card rh-flame1" href="#">Computing resources</a> 27 + <a class="rh-card rh-flame2" href="#">Daily IT Support</a> 28 + <a class="rh-card rh-flame3" href="#">Graduate School</a> 29 + <a class="rh-card rh-flame4" href="#">TU Delft collections</a> 30 + </div> 31 + <a class="rh-btn rh-btn-green" href="#">Explore Execution</a> 32 + </div> 33 + </div> 34 + 35 + <div class="rh-col"> 36 + <a class="rh-img" href="#"></a> 37 + <div class="rh-body"> 38 + <h3 class="rh-heading"><a href="#"><span class="rh-num">3.</span> Dissemination</a></h3> 39 + <p class="rh-desc">Sharing, publishing and archiving research</p> 40 + <div class="rh-cards"> 41 + <a class="rh-card rh-flame5" href="#">Media Production</a> 42 + <a class="rh-card rh-flame1" href="#">Publishing</a> 43 + <a class="rh-card rh-flame2" href="#">Science Communication</a> 44 + <a class="rh-card rh-flame3" href="#">Tech Transfer</a> 45 + </div> 46 + <a class="rh-btn rh-btn-forest" href="#">Explore Dissemination</a> 47 + </div> 48 + </div> 49 + 50 +</div> 51 +{{/html}}
- XWiki.StyleSheetExtension[0]
-
- code
-
... ... @@ -1,5 +1,6 @@ 1 +/* 1) Akzentfarbe zentral auf Angewandte-Orange */ 1 1 .rh-grid{ 2 - --rh-accent: hsl(194,95%,40%);/*FarbederNummer/Überschrift */3 + --rh-accent: #dd4814; /* Nummer + Überschrift */ 3 3 display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin:1rem 0; 4 4 } 5 5 @media (max-width:900px){ .rh-grid{ grid-template-columns:1fr; } } ... ... @@ -31,9 +31,12 @@ 31 31 .rh-flame4{ --rh-flame:#2e9e5b; } 32 32 .rh-flame5{ --rh-flame:#8e44ad; } 33 33 34 -.rh-btn{ margin-top:auto; display:block; text-align:center; text-decoration:none; 35 - padding:.8rem 1rem; border-radius:8px; font-weight:700; color:#1a1a1a; transition:filter .15s ease; } 36 -.rh-btn:hover{ filter:brightness(.95); } 37 -.rh-btn-yellow{ background:#f2c200; } 38 -.rh-btn-green{ background:#7bc043; } 39 -.rh-btn-forest{ background:#2e9e5b; color:#fff; } 35 +/* 2) Buttons: alle einheitlich orange (die drei Farbklassen zusammengeführt) */ 36 +.rh-btn{ 37 + margin-top:auto; display:block; text-align:center; text-decoration:none; 38 + padding:.8rem 1rem; border-radius:8px; font-weight:700; 39 + background:#dd4814; color:#fff; /* Orange, weiße Schrift */ 40 + transition:filter .15s ease; 41 +} 42 +.rh-btn:hover{ filter:brightness(1.08); } /* etwas heller beim Hover, da dunkler Grund */ 43 +