Add Project content
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user