add semantic pr, updated folder for src

This commit is contained in:
greg
2025-02-19 23:50:41 -08:00
parent b044d6f9bf
commit e804df393d
5 changed files with 51 additions and 4 deletions

30
src/style.css Normal file
View File

@@ -0,0 +1,30 @@
.particle-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.tech-card {
background: rgba(10, 25, 47, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(100, 255, 218, 0.1);
padding: 2rem;
border-radius: 0.5rem;
transition: all 0.3s ease;
}
.tech-card:hover {
transform: translateY(-5px);
border-color: rgba(100, 255, 218, 0.3);
}
.tech-icon {
width: 80px;
height: 80px;
margin-bottom: 1rem;
object-fit: contain;
}