|
@@ -17,21 +17,26 @@ import Icon from "../lib/Icon.astro"
|
|
|
<h1 class="title">eloh1m</h1>
|
|
|
<div class="links">
|
|
|
<a
|
|
|
- href="https://notabug.org/vladislav-atakhanov"
|
|
|
- title="Мой аккаунт NotABug"
|
|
|
- class="link link--notabug"
|
|
|
- style="--color: #000"
|
|
|
+ href="https://github.com/vladislav-atakhanov"
|
|
|
+ title="Мой аккаунт Github"
|
|
|
+ class="link link--github"
|
|
|
>
|
|
|
- <Icon name="notabug" />
|
|
|
+ <Icon name="github" />
|
|
|
</a>
|
|
|
<a
|
|
|
href="https://t.me/eloh1m"
|
|
|
title="Написать мне в Telegram"
|
|
|
class="link link--telegram"
|
|
|
- style="--color: hsl(200, 80%, 50%)"
|
|
|
>
|
|
|
<Icon name="telegram" />
|
|
|
</a>
|
|
|
+ <a
|
|
|
+ href="https://notabug.org/vladislav-atakhanov"
|
|
|
+ title="Мой аккаунт NotABug"
|
|
|
+ class="link link--notabug"
|
|
|
+ >
|
|
|
+ <Icon name="notabug" />
|
|
|
+ </a>
|
|
|
</div>
|
|
|
<a href="mailto:eloh1mZee@gmail.com" class="email" target="_blank"
|
|
|
>email: <u>eloh1mZee@gmail.com</u></a
|
|
@@ -70,7 +75,7 @@ import Icon from "../lib/Icon.astro"
|
|
|
}
|
|
|
.links {
|
|
|
display: flex;
|
|
|
- gap: 3em;
|
|
|
+ gap: clamp(1.5em, 5vw, 3em);
|
|
|
}
|
|
|
h1 {
|
|
|
font-size: 4em;
|
|
@@ -82,7 +87,6 @@ import Icon from "../lib/Icon.astro"
|
|
|
height: 5em;
|
|
|
transition: 0.3s ease;
|
|
|
&:hover {
|
|
|
- color: var(--color);
|
|
|
transform: scale(1.1);
|
|
|
}
|
|
|
:global(svg) {
|