oasis-project.pub
This commit is contained in:
parent
8080b8be65
commit
c9bf099c29
184 changed files with 244310 additions and 0 deletions
238
subdirectorios/larp.css
Normal file
238
subdirectorios/larp.css
Normal file
|
|
@ -0,0 +1,238 @@
|
|||
/* 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-bottom: 2rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
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;
|
||||
}
|
||||
|
||||
.logo-larp {
|
||||
max-height: 400px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-width: 90%;
|
||||
align: center;
|
||||
}
|
||||
|
||||
.logazo {
|
||||
max-width: 80%;
|
||||
display: block;
|
||||
align: center;
|
||||
}
|
||||
|
||||
.formulario {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.formulario label {
|
||||
font-weight: bold;
|
||||
color: var(--orange-neon);
|
||||
}
|
||||
|
||||
.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);
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
padding-left: 2rem;
|
||||
padding-right: 0.5rem;
|
||||
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: 0.3rem;
|
||||
justify-content: center;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
flex: 1 1 calc(22% - 2rem); /* 4 cards per row with spacing */
|
||||
max-width: calc(22% - 2rem);
|
||||
min-width: 260px;
|
||||
background-color: rgba(20, 20, 20, 0.9);
|
||||
border-radius: 10px;
|
||||
padding: 2.5rem;
|
||||
box-shadow: 0 0 12px rgba(255, 94, 0, 0.3);
|
||||
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);
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(10px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
.card-group {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.card {
|
||||
width: 95%;
|
||||
max-width: 360px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.formulario {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
.formulario input,
|
||||
.formulario textarea,
|
||||
.formulario select {
|
||||
font-size: 1rem;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.btn {
|
||||
width: fit-content;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
h2 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
.formulario input,
|
||||
.formulario textarea,
|
||||
.formulario select {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.btn {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.card h3 {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.card p,
|
||||
.card .summary {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.extra-info img {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue