Compare commits
3 Commits
ed7a82b44e
...
a3a64ee6e3
| Author | SHA1 | Date | |
|---|---|---|---|
| a3a64ee6e3 | |||
| 703ce8b97c | |||
| 5100002013 |
@@ -70,10 +70,62 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
/* background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460, #000000, #53354a, #800080); */
|
background:
|
||||||
background: linear-gradient(45deg, #1a1a2e44, #0f346066, #000000, #3e085e66, #80008022);
|
radial-gradient(120% 140% at 10% 10%, rgba(90, 210, 255, 0.18) 0%, rgba(6, 18, 38, 0.0) 45%),
|
||||||
background-size: 400% 400%;
|
radial-gradient(140% 160% at 90% 10%, rgba(142, 86, 255, 0.16) 0%, rgba(10, 6, 24, 0.0) 50%),
|
||||||
animation: gradient-animation 50s ease infinite;
|
radial-gradient(160% 180% at 50% 100%, rgba(255, 77, 156, 0.12) 0%, rgba(12, 8, 20, 0.0) 55%),
|
||||||
|
linear-gradient(135deg, rgba(10, 14, 30, 0.95) 0%, rgba(12, 22, 44, 0.9) 40%, rgba(14, 10, 36, 0.9) 100%);
|
||||||
|
background-size: 160% 160%, 170% 170%, 180% 180%, 100% 100%;
|
||||||
|
animation: homelab-aurora 12s ease-in-out infinite;
|
||||||
|
filter: saturate(1.15) contrast(1.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.homelab-background::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: -20% -10%;
|
||||||
|
background:
|
||||||
|
repeating-linear-gradient(
|
||||||
|
120deg,
|
||||||
|
rgba(120, 220, 255, 0.06) 0px,
|
||||||
|
rgba(120, 220, 255, 0.06) 1px,
|
||||||
|
rgba(10, 12, 24, 0.0) 1px,
|
||||||
|
rgba(10, 12, 24, 0.0) 10px
|
||||||
|
),
|
||||||
|
radial-gradient(60% 60% at 70% 30%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.0) 60%);
|
||||||
|
mix-blend-mode: screen;
|
||||||
|
opacity: 0.55;
|
||||||
|
animation: homelab-grid 30s linear infinite;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.homelab-background::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background: radial-gradient(80% 80% at 50% 50%, rgba(8, 12, 24, 0.0) 0%, rgba(8, 12, 24, 0.45) 70%, rgba(8, 12, 24, 0.75) 100%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes homelab-aurora {
|
||||||
|
0% {
|
||||||
|
background-position: 0% 50%, 100% 40%, 50% 100%, 0% 0%;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
background-position: 80% 40%, 20% 50%, 60% 80%, 0% 0%;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-position: 0% 50%, 100% 40%, 50% 100%, 0% 0%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes homelab-grid {
|
||||||
|
0% {
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate3d(6%, 0, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes gradient-animation {
|
@keyframes gradient-animation {
|
||||||
@@ -89,9 +141,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.homelab-title {
|
.homelab-title {
|
||||||
font-size: 1.4rem;
|
font-size: 1.8rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 4px;
|
||||||
letter-spacing: 0.03em;
|
letter-spacing: 0.03em;
|
||||||
background: linear-gradient(270deg,
|
background: linear-gradient(270deg,
|
||||||
var(--primary-color),
|
var(--primary-color),
|
||||||
@@ -106,12 +158,53 @@
|
|||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
background-clip: text;
|
background-clip: text;
|
||||||
animation: gradient-animation 25s ease infinite;
|
animation: gradient-animation 25s ease infinite;
|
||||||
|
text-shadow:
|
||||||
|
0 0 2px rgba(255, 255, 255, 0.3),
|
||||||
|
0 0 4px rgba(0, 255, 255, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.homelab-subtitle {
|
||||||
|
display: block;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 0.15em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
background: linear-gradient(20deg,
|
||||||
|
var(--primary-color),
|
||||||
|
var(--secondary-color),
|
||||||
|
var(--tertiary-color),
|
||||||
|
var(--primary-color-light),
|
||||||
|
var(--primary-color),
|
||||||
|
var(--secondary-color),
|
||||||
|
var(--tertiary-color));
|
||||||
|
background-size: 800% 800%;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
color: rgba(255, 255, 255, 0.8);
|
||||||
|
text-shadow:
|
||||||
|
0 0 2px rgba(0, 255, 255, 0.1),
|
||||||
|
0 0 1px rgba(255, 255, 255, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
.homelab-buttons {
|
.homelab-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.homelab-buttons > a.homelab-btn {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 10px 16px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.10);
|
||||||
|
border-radius: 12px;
|
||||||
|
color: #ffffff;
|
||||||
|
font-weight: 600;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
|
||||||
}
|
}
|
||||||
@@ -80,11 +80,14 @@
|
|||||||
<a href="https://git.ivanch.me/ivanch" class="btn social-link" target="_blank">
|
<a href="https://git.ivanch.me/ivanch" class="btn social-link" target="_blank">
|
||||||
<i class="ri-git-repository-fill"></i> <span>Gitea</span>
|
<i class="ri-git-repository-fill"></i> <span>Gitea</span>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="https://blog.ivanch.me" class="btn social-link" target="_blank">
|
||||||
|
<i class="ri-article-line"></i> <span>Blog</span>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="homelab-section">
|
<div class="homelab-section">
|
||||||
<div class="homelab-background"></div>
|
<div class="homelab-background"></div>
|
||||||
<h3 class="homelab-title">Homelab</h3>
|
<h3 class="homelab-title">Haven<span class="homelab-subtitle">personal homelab</span></h3>
|
||||||
<div class="homelab-buttons">
|
<div class="homelab-buttons">
|
||||||
<a href="https://github.com/ivanch/haven" class="btn homelab-btn" target="_blank">Deployments</a>
|
<a href="https://github.com/ivanch/haven" class="btn homelab-btn" target="_blank">Deployments</a>
|
||||||
<a href="https://git.ivanch.me/ivanch/server-scripts" class="btn homelab-btn" target="_blank">Scripts</a>
|
<a href="https://git.ivanch.me/ivanch/server-scripts" class="btn homelab-btn" target="_blank">Scripts</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user