mirror of
https://github.com/Lil-Carpi/LDM-ASIR.git
synced 2025-12-06 08:04:37 +00:00
Creado la seccion de politicas de privacidad
This commit is contained in:
@@ -694,3 +694,61 @@ output
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
/*================Politica de privacitat==============*/
|
||||
.policy-container
|
||||
{
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
backdrop-filter: blur(12px) saturate(180%);
|
||||
-webkit-backdrop-filter: blur(12px) saturate(180%);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
|
||||
padding: 3rem;
|
||||
border-radius: 20px;
|
||||
width: 100%;
|
||||
max-width: 1000px; /* Más ancho para lectura cómoda */
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
||||
.policy-container::before
|
||||
{
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; height: 2px;
|
||||
background: linear-gradient(90deg, transparent, #00c3ff, transparent);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.policy-content h3
|
||||
{
|
||||
color: #00c3ff;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.4rem;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.1);
|
||||
padding-bottom: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.policy-content p
|
||||
{
|
||||
color: #cbd5e1;
|
||||
line-height: 1.8;
|
||||
margin-bottom: 1.2rem;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
/* Ajustes para móviles en la política */
|
||||
@media (max-width: 768px) {
|
||||
.policy-container {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
.policy-content h3 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.policy-content p {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user