Commit 133e522c by PLN (Algolia)

iter1: fixed1

parent 2d5d43f9
--- ---
title: "[38C3] Secret Toilet Rave" title: "[38C3] Secret Toilet Rave"
date: "2025-12-28" date: "2024-12-28"
time: "01:37" time: "01:37"
location: "Hamburg, Germany" location: "Hamburg, Germany"
address: "CCH, Hamburg" address: "CCH, Hamburg"
......
...@@ -7,3 +7,22 @@ ...@@ -7,3 +7,22 @@
--biomod: #5bc091; --biomod: #5bc091;
--cigarette: #ff8c00; --cigarette: #ff8c00;
} }
/* Shine animation for album covers */
@keyframes shine {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
:global(.hover\:shadow-glow:hover) {
box-shadow: 0 0 15px rgba(217, 0, 255, 0.7);
}
:global(.animate-shine) {
animation: shine 1.5s ease-in-out;
}
...@@ -168,6 +168,30 @@ ...@@ -168,6 +168,30 @@
box-shadow: 0 10px 20px rgba(217, 0, 255, 0.3); box-shadow: 0 10px 20px rgba(217, 0, 255, 0.3);
} }
.outlineButton {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 1rem 2rem;
border-radius: 0.5rem;
font-weight: 600;
text-decoration: none;
color: white;
border: 1px solid rgba(217, 0, 255, 0.5);
background: rgba(217, 0, 255, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.outlineButton:hover {
background: rgba(217, 0, 255, 0.2);
border-color: var(--neon-high);
color: var(--neon-high);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(217, 0, 255, 0.2);
}
.sectionContainer { .sectionContainer {
padding: 5rem 1rem; padding: 5rem 1rem;
max-width: 1200px; max-width: 1200px;
...@@ -508,3 +532,24 @@ ...@@ -508,3 +532,24 @@
height: auto; height: auto;
filter: drop-shadow(0 0 10px rgba(217, 0, 255, 0.5)); filter: drop-shadow(0 0 10px rgba(217, 0, 255, 0.5));
} }
/* Shine animation for album covers
NOTE: KEPT HERE FOR REFERENCE, THESE ARE COPIED IN THE MAIN GLOBAL.CSS
AS MODULE CSS FORBIDS ROOT VARIABLES
@keyframes shine {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
:global(.hover\:shadow-glow:hover) {
box-shadow: 0 0 15px rgba(217, 0, 255, 0.7);
}
:global(.animate-shine) {
animation: shine 1.5s ease-in-out;
}
*/
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment