-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bead0e6
commit 12e71ef
Showing
1 changed file
with
91 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,95 @@ | ||
body { | ||
/* General Reset */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Courier New', monospace; /* Matches the Lain aesthetic */ | ||
background: url('static-background.gif') center center / cover no-repeat; | ||
background-attachment: fixed; /* Keeps it stationary when scrolling */ | ||
color: #d1d1d1; /* Muted gray text for a gloomy look */ | ||
box-sizing: border-box; | ||
} | ||
|
||
html, body { | ||
width: 100%; | ||
height: 100%; | ||
overflow: hidden; | ||
font-family: 'Inter', sans-serif; | ||
background: url('Lain58588.gif') no-repeat center center fixed; /* Background GIF */ | ||
background-size: cover; /* Ensures the GIF covers the whole screen */ | ||
color: #eaeaea; | ||
} | ||
|
||
/* Static Overlay (Using a static or noise texture) */ | ||
.background-overlay { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: url('static-noise.gif') repeat; /* Static or noise image */ | ||
opacity: 0.7; /* Adjust opacity for subtle effect */ | ||
z-index: -1; /* Keeps the overlay behind the content */ | ||
} | ||
|
||
/* Main Content */ | ||
.content { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
z-index: 1; /* Ensures the content stays on top of the background */ | ||
padding: 20px; | ||
opacity: 0; | ||
animation: fadeIn 2s ease-in forwards; | ||
} | ||
|
||
/* Content Headings */ | ||
.content h1 { | ||
font-size: 3.5rem; | ||
font-weight: 300; | ||
margin-bottom: 10px; | ||
text-transform: lowercase; | ||
color: #ffffff; | ||
text-shadow: 0 0 15px rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.content p { | ||
font-size: 1.2rem; | ||
font-style: italic; | ||
color: #b5b5b5; | ||
margin-bottom: 30px; | ||
} | ||
|
||
/* Links */ | ||
.content ul { | ||
list-style: none; | ||
padding: 0; | ||
margin-top: 20px; /* Adds space above the buttons */ | ||
} | ||
|
||
.content li { | ||
margin: 15px 0; /* Adds more spacing between each button */ | ||
} | ||
|
||
.content a { | ||
text-decoration: none; | ||
color: #cccccc; | ||
font-size: 1.1rem; | ||
padding: 12px 24px; | ||
border: 1px solid rgba(255, 255, 255, 0.2); | ||
border-radius: 5px; | ||
transition: all 0.3s ease; | ||
} | ||
|
||
.content a:hover { | ||
color: #ffffff; | ||
border-color: #ffffff; | ||
background: rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
/* Fade-In Animation */ | ||
@keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} |