94 lines
2.0 KiB
CSS
94 lines
2.0 KiB
CSS
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: 'Montserrat', Helvetica, Arial, sans-serif;
|
|
background: #0181C4;
|
|
}
|
|
.card {
|
|
background: #ffffff;
|
|
padding: 2.5rem 3rem;
|
|
border-radius: 0;
|
|
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
|
|
max-width: 520px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.badge { margin-bottom: 1rem; }
|
|
.title {
|
|
font-size: 1.25rem;
|
|
color: #101F2D;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.ip-wrapper { margin-top: 1rem; margin-bottom: 1rem; }
|
|
.ip { font-size: 3em; font-weight: 600; color: #0181C4; }
|
|
.divider {
|
|
border-bottom: 1px solid #0181C4;
|
|
width: 100%;
|
|
margin-bottom: 30px;
|
|
}
|
|
.ripe-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
color: #101F2D;
|
|
}
|
|
.ripe-item {
|
|
font-size: 0.95rem;
|
|
color: #101F2D;
|
|
margin: 0.2rem 0;
|
|
}
|
|
.ripe-muted {
|
|
font-size: .8rem;
|
|
margin-top: 30px;
|
|
}
|
|
/* Logo ridimensionato correttamente */
|
|
.logo {
|
|
max-width: 260px;
|
|
max-height: 100px;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
margin-bottom: 1.5rem;
|
|
display: block;
|
|
}
|
|
|
|
/* bottone sotto l'IP */
|
|
.copy-btn-below {
|
|
font-family: 'Montserrat', Helvetica, Arial, sans-serif;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
background: #101F2D;
|
|
color: #ffffff;
|
|
font-size: 1.2em;
|
|
padding: 8px 20px;
|
|
transition: all .3s;
|
|
border:0;
|
|
}
|
|
.copy-btn-below:hover, .copy-btn-below:active {
|
|
font-family: 'Montserrat', Helvetica, Arial, sans-serif;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
background: #79858B;
|
|
color: #ffffff;
|
|
font-size: 1.2em;
|
|
padding: 8px 20px;
|
|
transition: all .3s;
|
|
border:0;
|
|
}
|
|
|
|
|
|
/* Bandierina geoloc */
|
|
.flag-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 4px;
|
|
margin-right: 6px;
|
|
vertical-align: middle;
|
|
box-shadow: 0 0 3px rgba(0,0,0,0.25);
|
|
} |