Primo Commit
This commit is contained in:
260
css/animation.css
Normal file
260
css/animation.css
Normal file
@@ -0,0 +1,260 @@
|
||||
/* ========================================
|
||||
TRANSIZIONI E ANIMAZIONI
|
||||
======================================== */
|
||||
|
||||
|
||||
/* Transizione per i link di navigazione */
|
||||
.navLink,
|
||||
.nav-link,
|
||||
.station-link,
|
||||
.linkBox {
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Effetto hover sui link */
|
||||
.navLink:hover,
|
||||
.nav-link:hover,
|
||||
.station-link:hover,
|
||||
.linkBox:hover {
|
||||
transform: translateY(-2px);
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Effetto attivo sui link di navigazione del menu */
|
||||
|
||||
|
||||
@keyframes pulseActive {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
transform: translateX(-50%) scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.6;
|
||||
transform: translateX(-50%) scale(1.2);
|
||||
}
|
||||
}
|
||||
|
||||
/* Effetto click/tap */
|
||||
.navLink:active,
|
||||
.nav-link:active,
|
||||
.station-link:active,
|
||||
.linkBox:active {
|
||||
transform: scale(0.98);
|
||||
transition: transform 0.1s ease;
|
||||
}
|
||||
|
||||
/* Transizione per le card delle stazioni */
|
||||
.station-card {
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.station-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Transizione per i clickBox della home */
|
||||
.clickBox {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.clickBox:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.clickBox:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
/* Spinner di caricamento */
|
||||
.loading {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 200px;
|
||||
opacity: 0;
|
||||
animation: fadeIn 0.3s ease-in forwards;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.spinner {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border: 4px solid rgba(255, 255, 255, 0.3);
|
||||
border-top-color: #fff;
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/* Transizione per elementi che appaiono */
|
||||
.content-page,
|
||||
.station-list,
|
||||
.player-container {
|
||||
animation: fadeInContent 0.5s ease-out;
|
||||
}
|
||||
|
||||
@keyframes fadeInContent {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Transizione per le immagini */
|
||||
.station-logo,
|
||||
.station-logo-large {
|
||||
transition: transform 0.3s ease, filter 0.3s ease;
|
||||
}
|
||||
|
||||
.station-logo:hover,
|
||||
.station-logo-large:hover {
|
||||
transform: scale(1.05);
|
||||
filter: brightness(1.1);
|
||||
}
|
||||
|
||||
/* Transizione per i pulsanti */
|
||||
button,
|
||||
.submit-btn,
|
||||
.play-pause-btn {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
button:hover,
|
||||
.submit-btn:hover,
|
||||
.play-pause-btn:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
button:active,
|
||||
.submit-btn:active,
|
||||
.play-pause-btn:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
|
||||
/* Transizione smooth per tutti gli elementi interattivi */
|
||||
a, button, input, textarea, select {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
/* RIMOSSO: underline animato per il menu */
|
||||
/* Non ci sono più after pseudo-elementi per le underline */
|
||||
|
||||
/* Transizione per il back-link */
|
||||
.back-link a {
|
||||
transition: all 0.3s ease;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.back-link a:hover {
|
||||
transform: translateX(-5px);
|
||||
color: #4a90e2;
|
||||
}
|
||||
|
||||
/* Animazione per le liste */
|
||||
.stations-container {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.station-card {
|
||||
animation: fadeInScale 0.4s ease-out backwards;
|
||||
}
|
||||
|
||||
.station-card:nth-child(1) { animation-delay: 0.05s; }
|
||||
.station-card:nth-child(2) { animation-delay: 0.1s; }
|
||||
.station-card:nth-child(3) { animation-delay: 0.15s; }
|
||||
.station-card:nth-child(4) { animation-delay: 0.2s; }
|
||||
.station-card:nth-child(5) { animation-delay: 0.25s; }
|
||||
|
||||
@keyframes fadeInScale {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale(0.95);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Transizione per i form */
|
||||
.form-group input,
|
||||
.form-group textarea,
|
||||
.form-group select {
|
||||
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.form-group input:focus,
|
||||
.form-group textarea:focus,
|
||||
.form-group select:focus {
|
||||
border-color: #4a90e2;
|
||||
box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
|
||||
}
|
||||
|
||||
/* Animazione per i messaggi di risposta */
|
||||
.form-response {
|
||||
animation: slideInDown 0.4s ease-out;
|
||||
}
|
||||
|
||||
@keyframes slideInDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Transizione per video e iframe */
|
||||
video,
|
||||
iframe {
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
video:hover,
|
||||
iframe:hover {
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
/* Performance optimization */
|
||||
* {
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
/* Smooth scrolling */
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
/* Riduzione movimento per chi ha impostato preferenze di accessibilità */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
|
||||
.navLink.active::before {
|
||||
animation: none !important;
|
||||
}
|
||||
}
|
||||
11266
css/bootstrap.css
vendored
Normal file
11266
css/bootstrap.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
93
css/fonts/OFL.txt
Normal file
93
css/fonts/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
||||
Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
https://openfontlicense.org
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
BIN
css/fonts/Poppins-Black.ttf
Normal file
BIN
css/fonts/Poppins-Black.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-BlackItalic.ttf
Normal file
BIN
css/fonts/Poppins-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-Bold.ttf
Normal file
BIN
css/fonts/Poppins-Bold.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-BoldItalic.ttf
Normal file
BIN
css/fonts/Poppins-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-ExtraBold.ttf
Normal file
BIN
css/fonts/Poppins-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-ExtraBoldItalic.ttf
Normal file
BIN
css/fonts/Poppins-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-ExtraLight.ttf
Normal file
BIN
css/fonts/Poppins-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-ExtraLightItalic.ttf
Normal file
BIN
css/fonts/Poppins-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-Italic.ttf
Normal file
BIN
css/fonts/Poppins-Italic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-Light.ttf
Normal file
BIN
css/fonts/Poppins-Light.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-LightItalic.ttf
Normal file
BIN
css/fonts/Poppins-LightItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-Medium.ttf
Normal file
BIN
css/fonts/Poppins-Medium.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-MediumItalic.ttf
Normal file
BIN
css/fonts/Poppins-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-Regular.ttf
Normal file
BIN
css/fonts/Poppins-Regular.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-SemiBold.ttf
Normal file
BIN
css/fonts/Poppins-SemiBold.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-SemiBoldItalic.ttf
Normal file
BIN
css/fonts/Poppins-SemiBoldItalic.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-Thin.ttf
Normal file
BIN
css/fonts/Poppins-Thin.ttf
Normal file
Binary file not shown.
BIN
css/fonts/Poppins-ThinItalic.ttf
Normal file
BIN
css/fonts/Poppins-ThinItalic.ttf
Normal file
Binary file not shown.
400
css/style.css
Normal file
400
css/style.css
Normal file
@@ -0,0 +1,400 @@
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-Black.ttf') format('truetype');
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-BlackItalic.ttf') format('truetype');
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-BoldItalic.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-Medium.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-MediumItalic.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-Regular.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-Italic.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-Light.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: url('fonts/Poppins-LightItalic.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Poppins', sans-serif !important;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
overscroll-behavior: none;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Poppins", sans-serif;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* DESKTOP SECTION */
|
||||
body.desktopBody {
|
||||
background: #2a377e;
|
||||
color: white;
|
||||
}
|
||||
|
||||
div.dbox,
|
||||
div.dbox_mobile {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background: #4358ca8f;
|
||||
padding: 25px;
|
||||
border-radius: 50px;
|
||||
text-align: center;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
div.dbox_mobile {
|
||||
width: 90%;
|
||||
max-width: 450px;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
max-height: 475px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
div.dbox>h1.title,
|
||||
div.dbox_mobile>h1.title {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
div.dbox>hr,
|
||||
div.dbox_mobile>hr {
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
div.dbox>.dbtn,
|
||||
div.dbox_mobile>.dbtn {
|
||||
border: none;
|
||||
border-radius: 50px;
|
||||
padding: 10px 20px;
|
||||
background: #f0f0f0;
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
div.dbox>.dbtn:hover {
|
||||
background: #e0e0e0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.dfooter {
|
||||
position: fixed;
|
||||
bottom: 15px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
text-align: center;
|
||||
color: #ffffff90;
|
||||
font-size: 13px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* MOBILE SECTION */
|
||||
|
||||
.appBody {
|
||||
background-color: #10194b;
|
||||
max-width: 450px;
|
||||
min-width: 330px;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.header>.logo-section,
|
||||
.header>.menu-section {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.header>.logo-section,
|
||||
.footer>.copyright-section {
|
||||
background-color: #2a377e;
|
||||
padding: 15px 0;
|
||||
}
|
||||
|
||||
.header>.menu-section {
|
||||
background-color: #3849a8;
|
||||
padding: 13px 0;
|
||||
}
|
||||
|
||||
.header>.logo-section>img {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.header>.menu-section>.navLink {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
margin: 0 15px;
|
||||
}
|
||||
|
||||
.header>.menu-section>.navLink.active {
|
||||
color: #2a377e;
|
||||
margin: 0;
|
||||
padding: 3px 15px;
|
||||
background: white;
|
||||
border-radius: 50px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
main {
|
||||
background-color: white;
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.titlePage {
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
margin: 15px 0 20px;
|
||||
}
|
||||
|
||||
.subtitlePage {
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
margin: -15px 0 20px;
|
||||
}
|
||||
|
||||
.linkBox {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.clickBox {
|
||||
width: 100%;
|
||||
border: 2px solid #2a377e;
|
||||
text-align: center;
|
||||
border-radius: 20px;
|
||||
font-weight: 500;
|
||||
/* margin-bottom: 10px; */
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.clickBox.Squared {
|
||||
font-weight: 600;
|
||||
border: solid 4px #2a377e;
|
||||
}
|
||||
|
||||
.clickBox>img {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.changelogTitle {
|
||||
font-weight: 600;
|
||||
padding: 0 13px;
|
||||
margin: 0 0 15px;
|
||||
}
|
||||
|
||||
.changelogList,
|
||||
.tec,
|
||||
.stationList {
|
||||
padding: 0 13px;
|
||||
margin: 0 0 7px;
|
||||
text-align: justify;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
.stationList {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stationCard>a.stationLink {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.stationCard>a.stationLink>img {
|
||||
width: 100%;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
/* .stationCard>.thematicBadge {
|
||||
position: relative;
|
||||
background: #f7b835;
|
||||
padding: 1px 5px;
|
||||
font-size: 0.8rem;
|
||||
border-radius: 27px;
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
top: 31px;
|
||||
left: 35px;
|
||||
margin: 0;
|
||||
} */
|
||||
|
||||
.stationCard.isthematic{
|
||||
text-align: right;
|
||||
margin-top: -24px;
|
||||
}
|
||||
|
||||
.stationCard.isthematic:before{
|
||||
content: "Tematica";
|
||||
position: relative;
|
||||
background: #f7b835;
|
||||
padding: 1px 5px;
|
||||
font-size: 0.8rem;
|
||||
border-radius: 27px;
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
top: 30px;
|
||||
right: 7px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
iframe.contentplayer{
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
height: calc(100vh - 312px);
|
||||
width: 100%;
|
||||
max-width: 450px;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.footer_player{
|
||||
background: #f7b835;
|
||||
color: #2a377d;
|
||||
position: fixed;
|
||||
z-index: 90;
|
||||
bottom: 70px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 100%;
|
||||
max-width: 450px;
|
||||
height: 100px;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.footer_player > .row > .col-2 > img{
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
button#playPauseBtn{
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.footer{
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.footer>.menu-section {
|
||||
background: #3849a8;
|
||||
font-size: 0.7rem;
|
||||
padding: 7px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer>.menu-section>a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
.footer>.copyright-section {
|
||||
color: white;
|
||||
font-size: 0.8rem;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
.appBody {
|
||||
background-color: #2a377e;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Loading spinner */
|
||||
.loading {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 4px solid rgba(0, 0, 0, 0.1);
|
||||
border-radius: 50%;
|
||||
border-top-color: #3498db;
|
||||
animation: spin 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user