You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.8 KiB
79 lines
1.8 KiB
/* FEO GmbH Custom Bootstrap Theme - Newsletter
|
|
* Newsletter CTA and heading styling
|
|
*/
|
|
|
|
/* Newsletter CTA styling */
|
|
.newsletter-cta {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
|
backdrop-filter: blur(5px);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.newsletter-cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 3px;
|
|
background: linear-gradient(to right, var(--bs-primary), #2ecc71);
|
|
}
|
|
|
|
.newsletter-cta:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.newsletter-heading {
|
|
color: white;
|
|
font-size: 1.2rem;
|
|
font-weight: var(--font-weight-medium);
|
|
letter-spacing: 0.02em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.newsletter-text {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 0.9rem;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.newsletter-cta .btn-primary {
|
|
padding: 0.6rem 1rem;
|
|
font-weight: var(--font-weight-regular);
|
|
letter-spacing: 0.02em;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.newsletter-cta .btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
/* Newsletter heading styling */
|
|
.newsletter-heading-main {
|
|
color: var(--bs-primary) !important;
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 0.3rem 0.5rem;
|
|
margin-left: -0.5rem;
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.newsletter-heading-main::after {
|
|
background-color: var(--bs-primary) !important;
|
|
width: 60px !important;
|
|
}
|
|
|
|
.newsletter-heading-main i {
|
|
color: var(--bs-primary);
|
|
font-size: 1rem;
|
|
}
|
|
|