personal
// Sélectionnez un fichier pour voir son contenu
// Lastest code snippets:
5 stars
.neon-button {
padding: 15px 30px;
border: none;
border-radius: 8px;
background: linear-gradient(45deg, #ff2d95, #4355ff);
color: white;
font-weight: bold;
position: relative;
overflow: hidden;
transition: 0.3s;
box-shadow: 0 0 15px rgba(67, 85, 255, 0.5);
}
.neon-button:hover {
transform: translateY(-3px);
box-shadow: 0 0 30px rgba(67, 85, 255, 0.8);
}
.neon-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
transition: 0.5s;
}
.neon-button:hover::before {
left: 100%;
}
4 stars
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 20px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow:
0 4px 6px rgba(0, 0, 0, 0.1),
inset 0 0 20px rgba(255, 255, 255, 0.05);
color: white;
transition: transform 0.3s;
}
.glass-card:hover {
transform: scale(1.02);
}
.glass-card h2 {
font-size: 1.5em;
margin-bottom: 15px;
background: linear-gradient(45deg, #ff6b6b, #ffd93d);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.glass-card p {
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
}