Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
www
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PLN
www
Commits
133e522c
Commit
133e522c
authored
May 12, 2025
by
PLN (Algolia)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iter1: fixed1
parent
2d5d43f9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
67 additions
and
3 deletions
+67
-3
38c3_toilet.md
next/content/lives/2024/38c3_toilet.md
+1
-1
parvagues.js
next/pages/parvagues.js
+0
-0
favicon.ico
next/public/images/parvagues/favicon.ico
+0
-0
logo_big.png
next/public/images/parvagues/logo_big.png
+0
-0
logo_text.png
next/public/images/parvagues/logo_text.png
+0
-0
globals.css
next/styles/globals.css
+20
-2
parvagues.module.css
next/styles/parvagues.module.css
+46
-0
No files found.
next/content/lives/2024/38c3_toilet.md
View file @
133e522c
---
---
title
:
"
[38C3]
Secret
Toilet
Rave"
title
:
"
[38C3]
Secret
Toilet
Rave"
date
:
"
202
5
-12-28"
date
:
"
202
4
-12-28"
time
:
"
01:37"
time
:
"
01:37"
location
:
"
Hamburg,
Germany"
location
:
"
Hamburg,
Germany"
address
:
"
CCH,
Hamburg"
address
:
"
CCH,
Hamburg"
...
...
next/pages/parvagues.js
View file @
133e522c
This diff is collapsed.
Click to expand it.
next/public/images/parvagues/favicon.ico
View file @
133e522c
No preview for this file type
next/public/images/parvagues/logo_big.png
deleted
100644 → 0
View file @
2d5d43f9
288 KB
next/public/images/parvagues/logo_text.png
deleted
100644 → 0
View file @
2d5d43f9
125 KB
next/styles/globals.css
View file @
133e522c
...
@@ -6,4 +6,23 @@
...
@@ -6,4 +6,23 @@
--coral
:
#ff3d7b
;
--coral
:
#ff3d7b
;
--biomod
:
#5bc091
;
--biomod
:
#5bc091
;
--cigarette
:
#ff8c00
;
--cigarette
:
#ff8c00
;
}
}
\ No newline at end of file
/* 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
;
}
next/styles/parvagues.module.css
View file @
133e522c
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment