57 lines
No EOL
1 KiB
SCSS
57 lines
No EOL
1 KiB
SCSS
@import "foundation/base", "foundation/components/forms";
|
|
|
|
$include-html-tooltip-classes: true;
|
|
@import "foundation/components/tooltips";
|
|
|
|
.progress-meter {
|
|
counter-reset: step;
|
|
margin-left: 0;
|
|
padding-left: 0;
|
|
overflow: hidden;
|
|
margin-bottom: $form-spacing;
|
|
|
|
& > li {
|
|
list-style: none;
|
|
margin-right: 1em;
|
|
float: left;
|
|
|
|
&:before {
|
|
content: counter(step);
|
|
counter-increment: step;
|
|
display: inline-block;
|
|
padding: 0 .5em;
|
|
margin-right: .25em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tooltip {
|
|
font-size: small;
|
|
max-width: none;
|
|
left: 0;
|
|
|
|
&.tip-right >.nub {
|
|
top: $form-spacing;
|
|
}
|
|
}
|
|
|
|
.next-steps {
|
|
li {
|
|
width: 100%;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
display: block;
|
|
text-align: center;
|
|
|
|
.fi-icon {
|
|
font-size: 2.4rem;
|
|
display: block !important;
|
|
}
|
|
}
|
|
}
|
|
@media #{$medium-up} {
|
|
.tooltip {
|
|
margin-top: $form-spacing * 1.5;
|
|
}
|
|
} |