Add Project content

This commit is contained in:
2026-07-11 04:08:00 +02:00
parent 8650ec2a56
commit 21d51ac65b
2 changed files with 78 additions and 0 deletions
+28
View File
@@ -127,4 +127,32 @@ img.flash {
img.flash:hover {
width: 800px;
filter: drop-shadow(0 10px 30px var(--accent-yellow));
}
hr {
border: none;
height: 2px;
width: 80%;
margin: 40px auto;
background: linear-gradient(
90deg,
transparent 0%,
rgba(255, 255, 255, 0.2) 50%,
transparent 100%
);
position: relative;
overflow: visible;
}
hr::after {
content: '';
position: absolute;
top: -5px;
left: 0;
width: 100%;
height: 12px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 10px;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}