make cool arrows

This commit is contained in:
Anton Livaja 2025-03-14 20:20:13 -07:00
parent 1aaf8b248f
commit f3442b162a
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
2 changed files with 44 additions and 9 deletions

View File

@ -68,7 +68,10 @@
<h5>Solution</h5>
<p>Standardize code to remove all version control system specific items, leaving only functionality related code and produce a hash based on the tree of all necessary files.</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -91,7 +94,10 @@
<h5>Solution</h5>
<p>Create a crowdsourcing framework which makes it easy to publish signed review of code</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -114,7 +120,10 @@
<h5>Solution</h5>
<p>Bootstrap a compiler in a detrministic manner, then use that compiler to build all packages, reproduce the work on different systems, and cryptoraphically sign resulting hashes.</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -137,7 +146,10 @@
<h5>Solution</h5>
<p>Create a bare-bones uni-kernel operating system which spins up a new VM for each build, and discards everything afterwards</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -159,7 +171,10 @@
<h5>Solution</h5>
<p>Create a tool for using a single source of entropy to derive all cryptographic algorithms required</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -181,7 +196,10 @@
<h5>Solution</h5>
<p>A framework for rapidly developing applications to perform transfer and staking cryptocurrency operations.</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -203,7 +221,10 @@
<h5>Solution</h5>
<p>A minimal deterministic unikernel Linux distribution designed for managing secrets offline.</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -225,7 +246,10 @@
<h5>Solution</h5>
<p>Leverage TPM2 to cryptoraphically attest to software that's running on a server</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>
@ -247,7 +271,10 @@
<h5>Solution</h5>
<p>A minimal, immutable, and deterministic Linux unikernel build system targeting various Trusted Execution Environments for use cases that require high security and accountability.</p>
<br>
<p class="learn-more">Learn more</p>
<a href="#roadmap" class="arrow-link">
Learn more
<span class="arrow">&#x2192;</span>
</a>
</div>
</a>
</div>

View File

@ -215,6 +215,13 @@ a:hover {
color: white !important;
}
.text-well:hover .arrow {
transform: translateX(5px);
background: none !important;
background-color: var(--base-color);
color: white !important;
}
.arrow-link:hover {
background: none !important;
background-color: var(--base-color);
@ -276,6 +283,7 @@ a:hover {
background: #1e1e1e;
transform: scale(1.01);
filter: unset;
cursor: pointer;
}
.roadmap .flex-container .flex-container-inner .text-well:hover .learn-more {