Skip to content

Commit

Permalink
ui(interlinker): improve contrast for scroll-to-top button
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloose committed Nov 27, 2023
1 parent 052318a commit ab200de
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions frontend/src/pages/project/3.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ export const metadata: ProjectMetadata = {
<p>
<h3>How it works?</h3>
<ul>
<li>You <strong>seed</strong> the crawler with a link ('the origin')</li>
<li>It will start crawling the page, looking for <strong>links</strong> (<code>&lta/&gt</code> tags)</li>
<li>You <strong>seed</strong> the crawler with a url ('the origin')</li>
<li>It will start crawling that page, looking for <strong>links</strong> (<code>&lta/&gt</code> tags)</li>
<li>The links found will be added to a <strong>queue</strong></li>
<li>It will <strong>repeat</strong> the process for each link in the queue</li>
</ul>
</p>
<p>You can feed multiple origins to the crawler, and it will crawl them in parallel!</p>
<p>Start <button id="scroll-to-bottom-btn">scrolling down</button> and <strong>paste a link</strong> in the search box to see it in action!</p>
<div id="main-wrapper">
<div id="graph" />
Expand Down Expand Up @@ -90,7 +91,7 @@ export const metadata: ProjectMetadata = {
width: 400px;
height: 40px;
font-size: 1.2rem;
background-color: rgb(48, 49, 49);
background-color: #303131;
border: 1px solid black;
color: #e9e9e9;
padding: 20px 4px;
Expand Down Expand Up @@ -165,7 +166,7 @@ export const metadata: ProjectMetadata = {
position: absolute;
bottom: 25px;
right: 20px;
background-color: #2e3436;
background-color: #4a4b4b;
border: none;
color: #c0c1eb;
padding: 8px 16px;
Expand Down

0 comments on commit ab200de

Please sign in to comment.