oasis-project.pub
This commit is contained in:
parent
8080b8be65
commit
c9bf099c29
184 changed files with 244310 additions and 0 deletions
335
subdirectorios/forms.css
Normal file
335
subdirectorios/forms.css
Normal file
|
|
@ -0,0 +1,335 @@
|
|||
/* larp.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 {
|
||||
width: 100%;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.screen-1 {
|
||||
padding-top: 0.5rem;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.screen-2 {
|
||||
padding-top: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
padding: 2rem 3rem;
|
||||
border-radius: 0;
|
||||
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.5rem;
|
||||
color: var(--yellow);
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.formulario {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.formulario label {
|
||||
font-weight: bold;
|
||||
color: var(--orange-neon);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.formulario input,
|
||||
.formulario textarea,
|
||||
.formulario select {
|
||||
padding: 0.8rem;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
font-size: 1rem;
|
||||
background-color: #111;
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
.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;
|
||||
cursor: pointer;
|
||||
margin-top: 1rem;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
background-color: var(--yellow);
|
||||
color: var(--black);
|
||||
box-shadow: 0 0 10px var(--yellow);
|
||||
}
|
||||
|
||||
.card-group {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1.5rem;
|
||||
justify-content: space-evenly;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: rgba(20, 20, 20, 0.9);
|
||||
padding: 1.5rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 12px rgba(255, 94, 0, 0.3);
|
||||
width: 260px;
|
||||
max-width: 100%;
|
||||
cursor: pointer;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 20px var(--orange-neon);
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
font-size: 1.3rem;
|
||||
color: var(--orange-neon);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.card .summary {
|
||||
font-size: 1rem;
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
.extra-info {
|
||||
display: none;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.card.expanded .extra-info {
|
||||
display: block;
|
||||
animation: fadeIn 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
.extra-info img {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
border-radius: 8px;
|
||||
margin-top: 0.5rem;
|
||||
box-shadow: 0 0 10px var(--yellow);
|
||||
}
|
||||
|
||||
/* Tabla visual para las preguntas del formulario estilo HELP OUT */
|
||||
.question {
|
||||
margin-top: 2rem;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.question p {
|
||||
font-weight: bold;
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--yellow);
|
||||
text-shadow: 0 0 5px var(--yellow);
|
||||
}
|
||||
|
||||
.question-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 0.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
box-shadow: 0 0 10px var(--orange-neon);
|
||||
}
|
||||
|
||||
.question-table td {
|
||||
padding: 0.75rem 1rem;
|
||||
border-bottom: 1px solid var(--orange-neon);
|
||||
font-size: 1rem;
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
.question-table input[type="radio"] {
|
||||
margin-right: 0.6rem;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
.question-table label {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: var(--yellow);
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
/* Asegura que no haya scroll lateral inesperado */
|
||||
body, html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(10px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
**** .content {
|
||||
padding: 1.2rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
font-size: 1.1rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.formulario input,
|
||||
.formulario textarea,
|
||||
.formulario select,
|
||||
#quizForm input,
|
||||
#quizForm textarea,
|
||||
#quizForm select {
|
||||
font-size: 1rem;
|
||||
padding: 0.8rem;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.question p {
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.question label {
|
||||
font-size: 1rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
html, body {
|
||||
overflow-x: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.screen {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 1rem;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.8rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.formulario {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.formulario input,
|
||||
.formulario textarea,
|
||||
.formulario select {
|
||||
font-size: 1rem;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.question {
|
||||
padding: 0;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.question p {
|
||||
font-size: 1rem;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.question-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.question-table td {
|
||||
padding: 0.3rem 0.4rem;
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.question-table input[type="radio"] {
|
||||
transform: scale(1.1);
|
||||
margin-right: 0.4rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.question-table label {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
padding: 0.2rem 0;
|
||||
white-space: normal;
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
margin-top: 1.2rem;
|
||||
padding: 0.5rem 1rem;
|
||||
font-size: 1rem;
|
||||
max-width: 100%;
|
||||
text-align: left;
|
||||
white-space: normal;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue