netget
Version:
Rette Adepto/ Recibido Directamente.
75 lines (65 loc) • 1.41 kB
CSS
.welcome-grid {
display: flex;
flex-wrap: wrap;
gap: 1em;
justify-content: center;
margin-top: 2em;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 2em;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.welcome-card {
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
padding: 1em;
text-align: center;
max-width: 300px;
flex: 1 1 250px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.welcome-card:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.welcome-card h3 {
font-size: 1.2em;
margin-bottom: 0.5em;
}
.welcome-card ul {
list-style: none;
padding: 0;
margin: 0.5em 0;
}
.welcome-card ul li {
margin: 0.3em 0;
}
.welcome-card ul li a {
color: #0088cc;
text-decoration: none;
font-size: 0.9em;
}
.welcome-card ul li a:hover {
text-decoration: underline;
}
.welcome-btn {
margin-top: 0.5em;
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 0.5em 1em;
border-radius: 5px;
cursor: pointer;
font-size: 0.9em;
transition: background-color 0.3s;
}
.welcome-btn:hover {
background-color: rgba(0, 0, 0, 0.7);
}
.welcome-emails {
margin-top: 0.5em;
padding: 0;
list-style: none;
font-size: 0.9em;
}