- pagine RISO
This commit is contained in:
404
src/css/app.scss
404
src/css/app.scss
@@ -1,6 +1,3 @@
|
||||
@use "sass:color";
|
||||
|
||||
@import 'variables.scss';
|
||||
|
||||
/* blocco scroll orizzontale a ogni livello “pagina” */
|
||||
html,
|
||||
@@ -2986,407 +2983,6 @@ body.body--dark {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
|
||||
/// ========================================
|
||||
// GUIDA RISO COMPLETA
|
||||
// ========================================
|
||||
|
||||
// Animazione floating
|
||||
@keyframes float {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
transform: translateY(0px) rotate(0deg);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(-20px) rotate(5deg);
|
||||
}
|
||||
}
|
||||
|
||||
// Header principale
|
||||
.header {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
padding: 60px 40px;
|
||||
border-radius: 20px;
|
||||
margin-bottom: 40px;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 16px 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: '🌾';
|
||||
position: absolute;
|
||||
font-size: 200px;
|
||||
opacity: 0.1;
|
||||
top: -50px;
|
||||
right: -50px;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3em !important;
|
||||
margin-bottom: 10px !important;
|
||||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
||||
color: white !important;
|
||||
position: relative;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 2em !important;
|
||||
}
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.3em;
|
||||
opacity: 0.95;
|
||||
position: relative;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Sezioni contenuto
|
||||
.section {
|
||||
background: white;
|
||||
padding: 40px;
|
||||
margin-bottom: 30px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 15px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
// Header delle sezioni
|
||||
.section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 25px;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 3px solid #667eea;
|
||||
}
|
||||
|
||||
.section-icon {
|
||||
font-size: 2.5em;
|
||||
margin-right: 15px;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 1.8em !important;
|
||||
color: #667eea !important;
|
||||
font-weight: 700 !important;
|
||||
margin: 0 !important;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 1.4em !important;
|
||||
}
|
||||
}
|
||||
|
||||
.section-subtitle {
|
||||
font-size: 1.4em !important;
|
||||
color: #764ba2 !important;
|
||||
margin-bottom: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
// Box evidenziato (rosa)
|
||||
.highlight-box {
|
||||
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
||||
color: white;
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
margin: 30px 0;
|
||||
box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 6px 8px;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.6em;
|
||||
margin-bottom: 15px;
|
||||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.1em;
|
||||
line-height: 1.8;
|
||||
color: white !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Box sogno (azzurro/rosa)
|
||||
.dream-box {
|
||||
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
margin: 25px 0;
|
||||
border-left: 5px solid #667eea;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 6px 8px;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #667eea !important;
|
||||
font-size: 1.5em;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.7;
|
||||
}
|
||||
}
|
||||
|
||||
// Lista facilitatori
|
||||
.facilitator-list {
|
||||
background: #f8f9fa;
|
||||
padding: 25px;
|
||||
border-radius: 10px;
|
||||
margin: 20px 0;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 8px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: #764ba2 !important;
|
||||
margin-bottom: 15px;
|
||||
line-height: 1.5rem;
|
||||
font-size: 1.2em;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
padding: 10px 0 10px 35px;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
color: #667eea;
|
||||
font-weight: bold;
|
||||
font-size: 1.2em;
|
||||
width: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 15px;
|
||||
font-style: italic;
|
||||
color: #764ba2;
|
||||
}
|
||||
}
|
||||
|
||||
// Box informazioni (arancione)
|
||||
.info-box {
|
||||
background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
|
||||
padding: 25px;
|
||||
border-radius: 10px;
|
||||
margin: 20px 0;
|
||||
box-shadow: 0 5px 15px rgba(252, 182, 159, 0.3);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 8px;
|
||||
margin: 4px 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: #d63031 !important;
|
||||
margin-bottom: 12px;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top: 10px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
}
|
||||
|
||||
// Sezione link (azzurro)
|
||||
.links-section {
|
||||
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||
color: white;
|
||||
padding: 35px;
|
||||
border-radius: 15px;
|
||||
margin-top: 30px;
|
||||
box-shadow: 0 15px 35px rgba(79, 172, 254, 0.3);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 8px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.8em;
|
||||
margin-bottom: 20px;
|
||||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
|
||||
color: white !important;
|
||||
}
|
||||
}
|
||||
|
||||
.link-item {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
padding: 15px 20px;
|
||||
margin: 15px 0;
|
||||
border-radius: 10px;
|
||||
backdrop-filter: blur(10px);
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 6px 8px;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
transform: translateX(10px);
|
||||
}
|
||||
|
||||
a {
|
||||
color: white !important;
|
||||
text-decoration: none;
|
||||
font-size: 1.1em;
|
||||
font-weight: 500;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
&::before {
|
||||
content: '→';
|
||||
margin-right: 10px;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Call to action (viola)
|
||||
.cta-box {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 6px 8px;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.7em;
|
||||
margin-bottom: 15px;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.2em;
|
||||
line-height: 1.8;
|
||||
color: white !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Container generale
|
||||
.container_guida {
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.modern-chip {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
font-weight: 500;
|
||||
padding: 8px 16px;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
|
||||
transition: left 0.5s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
|
||||
|
||||
&::before {
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
// Mobile: più compatto
|
||||
@media (max-width: 599px) {
|
||||
padding: 8px 16px;
|
||||
font-size: 1rem;
|
||||
border-radius: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================
|
||||
// AGGIUNTE STILE RISO - Da inserire in fondo a app.scss
|
||||
// ==========================================
|
||||
|
||||
Reference in New Issue
Block a user