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.
52 lines
1.0 KiB
52 lines
1.0 KiB
/* FEO GmbH Custom Bootstrap Theme - Buttons
|
|
* Button styling
|
|
*/
|
|
|
|
/* Button styling */
|
|
.btn {
|
|
border-radius: 4px;
|
|
padding: 0.5rem 1.5rem;
|
|
font-weight: var(--font-weight-light);
|
|
transition: all 0.3s ease;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.nav-btn {
|
|
padding: 0.5rem 1.2rem;
|
|
box-shadow: 0 2px 6px rgba(var(--bs-primary-rgb), 0.15);
|
|
transition: all 0.3s ease;
|
|
font-weight: var(--font-weight-light);
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.nav-btn:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 3px 8px rgba(var(--bs-primary-rgb), 0.2);
|
|
}
|
|
|
|
/* Social media buttons styling */
|
|
.social-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 1.2rem;
|
|
transition: all 0.3s ease;
|
|
width: 100%;
|
|
text-align: left;
|
|
font-weight: var(--font-weight-regular);
|
|
letter-spacing: 0.01em;
|
|
border-width: 2px;
|
|
white-space: normal;
|
|
min-height: 3.5rem;
|
|
}
|
|
|
|
.social-btn i {
|
|
font-size: 1.2rem;
|
|
flex-shrink: 0;
|
|
align-self: flex-start;
|
|
margin-top: 0.2rem;
|
|
}
|
|
|
|
.social-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|