75 lines
1.2 KiB
SCSS
75 lines
1.2 KiB
SCSS
// icons
|
|
@import "bootstrap-icons";
|
|
|
|
// bootstrap
|
|
@import "./bootstrap";
|
|
|
|
// custom
|
|
.page-header__logo {
|
|
display: inline-block;
|
|
width: 100px;
|
|
height: auto;
|
|
}
|
|
|
|
// tabs
|
|
[data-tab] {
|
|
display: none;
|
|
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.multistep-form-nav {
|
|
font-size: 0.85em;
|
|
//text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.multistep-form-nav__item {
|
|
color: inherit;
|
|
font-size: 0.75em;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
width: 60px;
|
|
height: 60px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
margin-right: 5px;
|
|
border: 1px solid $gray-400;
|
|
transition: border-color 0.1s ease-in-out,
|
|
color 0.1s ease-in-out;
|
|
|
|
&:focus {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&.active {
|
|
color: $blue;
|
|
border-color: $blue;
|
|
}
|
|
}
|
|
|
|
.multistep-form-footer-nav {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
a {
|
|
width: 90px;
|
|
margin-right: 5px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&[disabled] {
|
|
background: $gray-400;
|
|
border-color: $gray-400;
|
|
}
|
|
}
|
|
} |