oasis-project.pub
This commit is contained in:
parent
8080b8be65
commit
c9bf099c29
184 changed files with 244310 additions and 0 deletions
175
subdirectorios/helpout.css
Normal file
175
subdirectorios/helpout.css
Normal file
|
|
@ -0,0 +1,175 @@
|
|||
/* helpout.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;
|
||||
--white: #f2f2f2;
|
||||
--highlight: #FF8C00;
|
||||
--font-body: 'Rajdhani', sans-serif;
|
||||
--font-display: 'Orbitron', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--black);
|
||||
color: var(--white);
|
||||
font-family: var(--font-body);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 1.6;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.screen.help {
|
||||
min-height: 100vh;
|
||||
padding: 4rem 2rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background-size: cover;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 95%;
|
||||
max-width: 2200px;
|
||||
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);
|
||||
text-shadow: 0 0 10px var(--orange-neon);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.6rem;
|
||||
color: var(--yellow);
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 0 0 6px var(--yellow);
|
||||
}
|
||||
|
||||
.task-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 1rem 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.task-list li {
|
||||
padding: 0.5rem 0;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.1);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.house-buttons {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.toggle-button {
|
||||
background-color: transparent;
|
||||
border: 2px solid var(--orange-neon);
|
||||
color: var(--yellow);
|
||||
padding: 0.5rem 1rem;
|
||||
font-family: var(--font-display);
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.toggle-button:hover {
|
||||
background-color: var(--orange-neon);
|
||||
color: #000;
|
||||
box-shadow: 0 0 10px var(--highlight);
|
||||
}
|
||||
|
||||
.toggle-section {
|
||||
display: none;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.toggle-section.visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.house-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 1rem;
|
||||
text-align: left;
|
||||
box-shadow: 0 0 12px var(--orange-neon);
|
||||
background-color: rgba(20, 20, 20, 0.8);
|
||||
}
|
||||
|
||||
.house-table th, .house-table td {
|
||||
border: 1px solid var(--yellow);
|
||||
padding: 0.75rem;
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.house-table th {
|
||||
background-color: rgba(255, 94, 0, 0.2);
|
||||
color: var(--orange-neon);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--yellow);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--orange-neon);
|
||||
text-shadow: 0 0 6px var(--highlight);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
.content {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
.house-table th, .house-table td {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.toggle-button {
|
||||
padding: 0.4rem 0.8rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.content {
|
||||
padding: 1.5rem 1rem;
|
||||
}
|
||||
.task-list li,
|
||||
.house-table td,
|
||||
.house-table th {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.house-buttons {
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue