OASIS-PROJECT/subdirectorios/maintainers.css
2025-11-06 21:49:24 +01:00

136 lines
2.4 KiB
CSS

/* maintainers.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Rajdhani:wght@400;700&display=swap');
:root {
--orange-neon: #FF5E00;
--yellow: #FFD700;
--black: #000000;
--highlight: #FF8C00;
--font-body: 'Rajdhani', sans-serif;
--font-display: 'Orbitron', sans-serif;
}
body {
background-color: var(--black);
color: var(--yellow);
font-family: var(--font-body);
margin: 0;
padding: 0;
}
.screen {
min-height: 100vh;
padding: 4rem 2rem;
display: flex;
flex-direction: column;
justify-content: center;
background-attachment: fixed;
background-position: center;
background-size: cover;
text-align: center;
}
.content {
max-width: 900px;
margin: 0 auto;
background: rgba(0, 0, 0, 0.6);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px var(--orange-neon);
}
h2 {
font-family: var(--font-display);
font-size: 2.8rem;
color: var(--orange-neon);
margin-bottom: 1.5rem;
text-shadow: 0 0 10px var(--orange-neon);
}
h3 {
font-size: 1.6rem;
color: var(--yellow);
margin-top: 2rem;
margin-bottom: 1rem;
text-shadow: 0 0 6px var(--yellow);
}
.card {
background: rgba(20, 20, 20, 0.9);
padding: 1.5rem;
border-radius: 10px;
margin-bottom: 1.5rem;
text-align: left;
box-shadow: 0 0 12px rgba(255, 94, 0, 0.3);
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
margin-top: 2rem;
margin-bottom: 2rem;
}
.gallery img.screenshot {
max-width: 400px;
width: 100%;
border-radius: 10px;
}
.link-section {
margin: 2rem 0;
font-size: 1.1rem;
}
.btn {
background-color: transparent;
color: var(--yellow);
border: 2px solid var(--yellow);
padding: 0.7rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
display: inline-block;
margin-top: 1rem;
margin-left: 22.5rem;
}
.btn:hover {
background-color: var(--yellow);
color: var(--black);
box-shadow: 0 0 10px var(--yellow);
}
@media (max-width: 768px) {
h2 {
font-size: 2rem;
}
.gallery img.screenshot {
max-width: 100%;
}
.content {
padding: 1.5rem;
}
.card {
font-size: 0.95rem;
}
}
@media (max-width: 480px) {
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.2rem;
}
.btn {
font-size: 0.9rem;
padding: 0.5rem 1rem;
}
.link-section {
font-size: 1rem;
}
}