Skip to content

Commit

Permalink
added link to alpaca
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffser committed Aug 11, 2024
1 parent 825bb43 commit 2b0df16
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,13 @@ <h1 class="yeseva-one-regular">Jeffry Samuel</h1>
<a href="https://twitter.com/jeffrysamuer" class="nf nf-md-twitter"></a>
</div>
</section>
<a href="alpaca/" id="alpaca">
<img src="images/alpaca/logo.svg" alt="">
<div>
<h1>Alpaca</h1>
<p>An Ollama client</p>
</div>

</a>
</body>
</html>
21 changes: 20 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ body {
background-color: black;
color: white;
display: flex;
flex-direction: column;
gap: 60px;
align-items: center;
justify-content: center;
height: calc(100vh - 60px);
padding: 30px;
}
section#main {
body > section, body > a {
padding: 30px;
border: solid white;
display: flex;
Expand All @@ -35,4 +37,21 @@ section#main > div#link-container > a {
}
section#main > div#link-container > a:hover {
transform: scale(1.1);
}
a#alpaca {
display: flex;
gap: 10px;
flex-direction: row;
color: white;
text-decoration: none;
transition: .2s transform;
}

a#alpaca:hover {
transform: scale(1.1);
}

a#alpaca > div > h1 {
font-size: 50px;
margin: 0;
}

0 comments on commit 2b0df16

Please sign in to comment.