*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #0d0d0d;
color: #d3d3d3;
margin: 0;
padding: 0;
overflow-x: hidden;
line-height: 1.6;
}
header {
background-color: #1a1a1a;
color: #03a9f4;
padding: 20px;
text-align: center;
font-size: 1.8em;
font-weight: bold;
animation: slideInDown 0.6s ease-out;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}
footer {
background-color: #1a1a1a;
padding: 20px;
text-align: center;
z-index: 100;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}
footer a {
color: #03a9f4;
text-decoration: none;
font-style: italic;
}
.content {
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
.breadcrumbs {
margin-bottom: 20px;
font-size: 0.9em;
color: #d3d3d3;
animation: fadeInLeft 0.7s ease-out;
}
.breadcrumbs a {
color: #03a9f4;
text-decoration: none;
}
.breadcrumbs a:hover {
text-decoration: underline;
}
h1 {
font-size: 2em;
margin-bottom: 0.5em;
color: #e0e0e0;
}
.readme-content,
.file-content {
background-color: #121212;
padding: 20px;
border-radius: 8px;
color: #d3d3d3;
animation: fadeIn 0.8s ease-out;
}
.file-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.file-list li {
display: flex;
align-items: center;
gap: 10px;
margin: 10px 0;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.5s ease forwards;
}
.file-list span {
font-size: 1.2em;
}
.file-list a {
color: #03a9f4;
text-decoration: none;
font-size: 1.1em;
}
.file-list a:hover {
text-decoration: underline;
}
.github-button {
margin-top: 20px;
display: flex;
justify-content: center;
}
.button {
padding: 10px 20px;
background-color: #03a9f4;
border: none;
color: #fff;
border-radius: 5px;
font-weight: bold;
font-size: 1em;
cursor: pointer;
text-decoration: none;
animation: bounceIn 1s ease;
transition: all 0.3s ease;
}
.button:hover {
background-color: #039be5;
box-shadow: 0px 4px 15px rgba(0, 169, 244, 0.6);
transform: translateY(-2px);
animation: pulse 1s infinite;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInDown {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes bounceIn {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-15px);
}
60% {
transform: translateY(-7px);
}
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
@media (max-width: 600px) {
.content {
padding: 10px;
}
h1 {
font-size: 1.5em;
}
.button {
font-size: 0.9em;
padding: 8px 16px;
}
.breadcrumbs {
font-size: 0.8em;
}
}