71 lines
1.3 KiB
CSS
71 lines
1.3 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;
|
|
}
|
|
.title {
|
|
font-size: 1.25rem;
|
|
color: #101F2D;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
/* Logo link wrapper */
|
|
.logo-link {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* 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);
|
|
}
|
|
|
|
/* Bottone copia IP sotto l'indirizzo */
|
|
.copy-btn-below {
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* Logo size constraints */
|
|
.logo {
|
|
max-width: 260px;
|
|
max-height: 100px;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
margin-bottom: 1.5rem;
|
|
display: block;
|
|
}
|