- aggiornato la guida per installare la App
- aggiornato la Guida Completa e Breve di RISO. - pagina per ricevere i RIS. - sistemato problema creazione nuovi Circuiti (admin non corretti). - corretto giro delle email, invitante, invitato e ricezione msg su telegram.
This commit is contained in:
415
src/css/app.scss
415
src/css/app.scss
@@ -16,9 +16,9 @@ body,
|
||||
.q-page {
|
||||
max-width: 100%;
|
||||
overflow-x: hidden;
|
||||
|
||||
/* evita barre X su page container */
|
||||
@media (max-width: 600px) {
|
||||
}
|
||||
@media (max-width: 600px) {}
|
||||
}
|
||||
|
||||
|
||||
@@ -32,33 +32,38 @@ $heading-primary-line-height: 1.3;
|
||||
h1 {
|
||||
// Font size fluido e responsive
|
||||
font-size: clamp($heading-primary-size-mobile, 4vw, $heading-primary-size-desktop);
|
||||
|
||||
|
||||
// Typography
|
||||
font-weight: $heading-primary-weight;
|
||||
letter-spacing: $heading-primary-letter-spacing;
|
||||
line-height: $heading-primary-line-height;
|
||||
|
||||
|
||||
// Migliora la leggibilità
|
||||
color: var(--q-primary, #1976d2);
|
||||
|
||||
|
||||
// Anti-aliasing per rendering più pulito
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
|
||||
// Spacing opzionale
|
||||
margin-bottom: 1rem;
|
||||
|
||||
|
||||
// Transizione smooth per dark mode
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Söhne, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-family: 'Segoe UI', Söhne, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #333333;
|
||||
line-height: 1.5;
|
||||
color: #2c3e50;
|
||||
line-height: 1.7;
|
||||
/*background: linear-gradient(135deg, #f5f7fa 0%, #f3fff2 100%);*/
|
||||
|
||||
//font-size: 1rem;
|
||||
@media (max-width: 600px) {
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
|
||||
.text-mycol {
|
||||
@@ -78,25 +83,29 @@ p {
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
// Liste più universali e flessibili
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul li::before {
|
||||
content: '\2713';
|
||||
color: red;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
margin-left: 20px;
|
||||
// Lista di default con checkmark
|
||||
&:not(.q-list) li {
|
||||
list-style: none;
|
||||
|
||||
@media (max-width: 600px) {
|
||||
margin-left: 5px;
|
||||
&::before {
|
||||
content: '\2713';
|
||||
color: #667eea;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
|
||||
@media (max-width: 600px) {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ol li::before {
|
||||
color: red;
|
||||
color: #667eea;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
margin-left: 20px;
|
||||
@@ -107,8 +116,8 @@ ol li::before {
|
||||
}
|
||||
|
||||
li {
|
||||
/*color: #2f2c8b;*/
|
||||
font-size: 18px;
|
||||
line-height: 1.7;
|
||||
|
||||
@media (max-width: 600px) {
|
||||
font-size: 1rem;
|
||||
@@ -2872,7 +2881,10 @@ body.body--dark {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
#q-app, .q-page, .q-page-container {
|
||||
|
||||
#q-app,
|
||||
.q-page,
|
||||
.q-page-container {
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
@@ -2898,4 +2910,361 @@ body.body--dark {
|
||||
.row.no-wrap {
|
||||
min-width: fit-content; // permette alla riga di espandersi oltre il container
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user