Initial Commit: Addind missing svg icons
This commit is contained in:
33
index.html
33
index.html
@@ -119,6 +119,31 @@
|
||||
.contact-link:hover {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.social-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1.25rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: var(--text-muted);
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-position: center;
|
||||
mask-position: center;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.social-icon:hover {
|
||||
background-color: var(--accent);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -144,6 +169,14 @@
|
||||
<div class="contact">
|
||||
<span class="contact-label">Administrator</span>
|
||||
<a href="mailto:tech@ramforth.net" class="contact-link">tech@ramforth.net</a>
|
||||
|
||||
<div class="social-row">
|
||||
<a href="https://cloud9.ramforth.net" class="social-icon" style="-webkit-mask-image: url('https://cdn.simpleicons.org/nextcloud'); mask-image: url('https://cdn.simpleicons.org/nextcloud');" aria-label="Nextcloud"></a>
|
||||
<a href="https://gitea.ramforth.net" class="social-icon" style="-webkit-mask-image: url('https://cdn.simpleicons.org/gitea'); mask-image: url('https://cdn.simpleicons.org/gitea');" aria-label="Gitea"></a>
|
||||
<a href="https://radio.ramforth.net" class="social-icon" style="-webkit-mask-image: url('https://cdn.simpleicons.org/azuracast'); mask-image: url('https://cdn.simpleicons.org/azuracast');" aria-label="Azuracast"></a>
|
||||
<a href="https://twitch.tv/ramforth" class="social-icon" style="-webkit-mask-image: url('https://cdn.simpleicons.org/twitch'); mask-image: url('https://cdn.simpleicons.org/twitch');" aria-label="Twitch"></a>
|
||||
<a href="mailto:tech@ramforth.net" class="social-icon" style="-webkit-mask-image: url('https://cdn.simpleicons.org/gmail'); mask-image: url('https://cdn.simpleicons.org/gmail');" aria-label="Email"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user