unclean SPARC

This commit is contained in:
STEINNI
2025-08-27 07:03:09 +00:00
commit f308460931
430 changed files with 54426 additions and 0 deletions
@@ -0,0 +1,61 @@
<style>
.expert-dashboard > header { background-color: rgb(8, 64, 143); }
.expert-dashboard .todo { min-width: 240px; }
.expert-dashboard .projects-list {
display: grid;
grid-gap: var(--eicui-base-spacing-m);
grid-template-columns: repeat(auto-fill, 240px);
}
.expert-dashboard .projects-list article { cursor: pointer; }
.expert-dashboard .projects-list article:hover {
background-color: var(--eicui-base-color-info-10);
}
.projects-list section { text-align: center; }
</style>
<article eiccard media class="expert-dashboard">
<header>
<h1>Expert dashboard</h1>
<h2></h2>
</header>
<section>
<div class="cols-2 left">
<div>
<article eiccard>
<header>
<h1>General information</h1>
<h2></h2>
</header>
<section>
<ul nonbulleted>
<li>
<label>...</label>
<span>...</span>
</li>
</ul>
</section>
</article>
<article eiccard danger class="todo">
<header>
<h1>TODOs</h1>
<h2></h2>
</header>
<section>
<ul bulleted>
<li>2 invitations</li>
<li>1 report pending</li>
</ul>
</section>
</article>
</div>
<article eiccard>
<header>
<h1>Assigned projects</h1>
<h2></h2>
</header>
<section>
<ul class="projects-list" nonbulleted></ul>
</section>
</article>
</div>
</section>
</article>