2025-06-14 08:51:43 +02:00

276 lines
4.9 KiB
CSS

:root {
--primary-color: #00ffff;
--secondary-color: #ff00ff;
--background-color: #0d0d0d;
--text-color: #f0f0f0;
--overlay-background: rgba(0, 0, 0, 0.85);
--button-background: #ff00ff;
--button-hover-background: #00ffff;
--scanline-color: rgba(255, 255, 255, 0.05);
--glow-color: rgba(0, 255, 255, 0.3);
--terminal-background: rgba(0, 0, 0, 0.9);
--terminal-border: #ff00ff;
/*--border-radius: 1.5%;*/
}
/*
effect
*/
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes scanlines {
0% { transform: translateY(0); }
50% { transform: translateY(-2px); }
100% { transform: translateY(0); }
}
@keyframes vhs-static {
0% { transform: translate(0, 0); }
25% { transform: translate(-1px, 1px); }
50% { transform: translate(1px, -0.5px); }
75% { transform: translate(-0.5px, 0.5px); }
100% { transform: translate(0.5px, -1px); }
}
@keyframes flicker {
0%, 100% { opacity: 0.8; }
50% { opacity: 1; }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.75; }
}
@keyframes rgb-split {
0%, 100% {
transform: translate(0px, 0px);
}
50% {
transform: translate(-0.5px, 0.5px);
}
}
.fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
.hidden {
display: none;
}
.crt-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: -1;
mix-blend-mode: screen;
animation: flicker 1.5s infinite;
border-radius: var(--border-radius);
box-shadow: inset 0 0 40px var(--glow-color);
}
.grid-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
to right,
rgba(0, 255, 255, 0.1) 0px,
rgba(0, 255, 255, 0.1) 1px,
transparent 1px,
transparent 40px
), repeating-linear-gradient(
to bottom,
rgba(0, 255, 255, 0.1) 0px,
rgba(0, 255, 255, 0.1) 1px,
transparent 1px,
transparent 40px
);
background-color: var(--background-color);
z-index: -4;
}
#top-nav {
max-width: 960px;
margin: 0 auto;
padding: 2rem;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: rgba(0, 0, 0, 0.8);
border-bottom: 2px solid var(--secondary-color);
z-index: 1;
}
#left-nav {
position:absolute;
padding: 2rem;
left:0;
}
#right-nav {
position:absolute;
padding: 2rem;
right:0;
}
nav ul {
display: flex;
flex-wrap: wrap;
gap: 1rem;
list-style: none;
}
nav ul li a {
text-decoration: none;
color: var(--primary-color);
padding: 0.5rem 1rem;
border: 1px solid var(--primary-color);
border-radius: 4px;
text-shadow: 0 0 3px var(--primary-color);
}
nav ul li a:hover {
background: var(--primary-color);
color: var(--background-color);
}
#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgb(0, 0, 0);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
cursor: pointer;
pointer-events: all; /* Ensure the user can click on the loading screen */
z-index: 9999;
mix-blend-mode: screen;
box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.15);
animation: flicker 3.0s infinite;
}
#loading-screen::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('/assets/RpdC.gif') repeat;
opacity: 0.05;
mix-blend-mode: screen;
z-index: -1;
}
#loading-screen::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
0deg,
rgba(255, 255, 255, 0.05) 0px,
rgba(255, 255, 255, 0.05) 1px,
transparent 1px,
transparent 4px
);
animation: scanlines 0.1s linear infinite;
z-index: -2;
}
.loading-text {
color: var(--primary-color);
font-family: 'Orbitron', sans-serif;
font-size: 2rem;
text-align: center;
text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
animation: pulse 1.5s infinite;
z-index: 10000;
cursor: pointer;
}
body {
margin: 0;
font-family: 'Orbitron', sans-serif;
color: var(--text-color);
background: var(--background-color);
overflow-x: hidden;
}
body::before {
content: "";
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
background: url('/assets/RpdC.gif') repeat;
opacity: 0.05;
mix-blend-mode: screen;
}
body::after {
content: "";
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
background: repeating-linear-gradient(
0deg,
--scanline-color 0px,
--scanline-color 1px,
transparent 1px,
transparent 4px
);
animation: scanlines 0.1s linear infinite;
}
.foreground-container {
max-width: 960px;
min-height: 720px;
margin: 0 auto;
padding: 2rem;
background-color: rgba(0, 0, 0, 0.85);
position: relative;
z-index: 1;
}
footer a {
text-decoration: none;
color: var(--primary-color);
}
footer a:hover {
color: var(--secondary-color);
}
footer p {
text-align: center;
}