2024-10-04 10:10:20 +00:00
|
|
|
/* style.css */
|
|
|
|
|
2024-10-04 11:51:39 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
|
2024-10-04 10:10:20 +00:00
|
|
|
/* Global Styles */
|
|
|
|
body {
|
|
|
|
margin: 0;
|
2024-10-04 11:51:39 +00:00
|
|
|
font-family: 'Inter', Arial, sans-serif;
|
2024-10-04 10:10:20 +00:00
|
|
|
background-color: #2c2f33;
|
|
|
|
color: #ffffff;
|
|
|
|
overflow: auto;
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 16px;
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body a {
|
|
|
|
color: #7289da;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
background-color: #23272a;
|
|
|
|
padding: 10px;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2024-10-04 14:24:00 +00:00
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2024-10-04 10:10:20 +00:00
|
|
|
nav a {
|
2024-10-04 14:24:00 +00:00
|
|
|
margin: 5px 10px;
|
2024-10-04 10:10:20 +00:00
|
|
|
color: #ffffff;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 0.9em;
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav a:hover {
|
|
|
|
color: #7289da;
|
2024-10-04 11:51:39 +00:00
|
|
|
text-decoration: none;
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2024-10-05 12:04:39 +00:00
|
|
|
max-width: 800px;
|
2024-10-04 10:10:20 +00:00
|
|
|
padding-top: 70px;
|
2024-10-05 11:41:20 +00:00
|
|
|
margin: 0 auto;
|
2024-10-04 14:24:00 +00:00
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
2024-10-04 11:51:39 +00:00
|
|
|
/* Carousel Styles */
|
|
|
|
.carousel {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#carousel-container {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#carousel-image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
transition: opacity 1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: black;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 1s ease;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
color: #ffffff;
|
|
|
|
text-align: center;
|
|
|
|
background-color: rgba(35, 39, 42, 0.9);
|
2024-10-04 14:24:00 +00:00
|
|
|
padding: 15px;
|
2024-10-04 11:51:39 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
z-index: 2;
|
2024-10-04 14:24:00 +00:00
|
|
|
width: 80%;
|
2024-10-05 12:04:39 +00:00
|
|
|
max-width: 600px;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text h1 {
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 2em;
|
2024-10-04 11:51:39 +00:00
|
|
|
margin: 0 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text p {
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 1em;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
2024-10-04 10:10:20 +00:00
|
|
|
/* Page-specific Styles */
|
|
|
|
.home-background {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
transition: background-image 1.5s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-content {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
text-align: center;
|
|
|
|
color: #ffffff;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
2024-10-04 14:24:00 +00:00
|
|
|
padding: 15px;
|
2024-10-04 10:10:20 +00:00
|
|
|
border-radius: 10px;
|
2024-10-04 14:24:00 +00:00
|
|
|
width: 80%;
|
|
|
|
max-width: 400px;
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.home-content h1 {
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 2em;
|
2024-10-04 10:10:20 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-content p {
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 1em;
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Description Page */
|
|
|
|
ol {
|
|
|
|
background: #40444b;
|
2024-10-04 14:24:00 +00:00
|
|
|
padding: 15px;
|
2024-10-05 12:04:39 +00:00
|
|
|
padding-left: 30px;
|
2024-10-04 10:10:20 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* List Page */
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li a {
|
|
|
|
color: #7289da;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2024-10-04 11:51:39 +00:00
|
|
|
/* Liste page */
|
|
|
|
.anime-list {
|
2024-10-04 14:24:00 +00:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 20px 0;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: #b9bbbe;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.anime-list li {
|
2024-10-04 14:24:00 +00:00
|
|
|
margin-bottom: 15px;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.anime-list a {
|
2024-10-04 14:24:00 +00:00
|
|
|
color: #7289da;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: color 0.3s ease;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.anime-list a:hover {
|
2024-10-04 14:24:00 +00:00
|
|
|
color: #ffffff;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.anime-list a:visited {
|
2024-10-04 14:24:00 +00:00
|
|
|
color: #a58dff;
|
2024-10-04 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
2024-10-04 10:10:20 +00:00
|
|
|
/* Footer */
|
|
|
|
footer {
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 20px;
|
|
|
|
color: #99aab5;
|
2024-10-04 14:24:00 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Media Queries for Responsive Design */
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
body {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
margin: 5px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text h1 {
|
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text p {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-content h1 {
|
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-content p {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
body {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text h1 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-text p {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-content h1 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-content p {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2024-10-05 11:41:20 +00:00
|
|
|
padding-top: 120px;
|
2024-10-04 14:24:00 +00:00
|
|
|
}
|
2024-10-04 10:10:20 +00:00
|
|
|
}
|