Skip to content

Commit

Permalink
Merge pull request #3 from galtay/til
Browse files Browse the repository at this point in the history
add link to TIL
  • Loading branch information
galtay authored Jan 4, 2025
2 parents bc63545 + 5edc69f commit 30cd70e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ <h1><span>Gabriel</span><br><span>Altay</span></h1>
</div>

<p>Greetings, netrunner. You've found my personal corner of cyberspace.</p>


<div class="section">
<h2>Today I Learned</h2>
I write about <a href="https://galtay.github.io/til" target="_blank" rel="noopener noreferrer">things I learn</a>.

</div>

<div class="section">
<h2>Skills</h2>
<ul>
Expand Down
12 changes: 12 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ h1, h2 {
text-shadow: 0 0 5px #ff00ff;
}

a {
color: #00ff00;
text-decoration: none;
text-shadow: 0 0 5px #00ff00;
transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
color: #ff00ff;
text-shadow: 0 0 5px #ff00ff;
}

.section {
margin-top: 20px;
border-top: 1px solid #00ff00;
Expand Down

0 comments on commit 30cd70e

Please sign in to comment.