mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
43 lines
787 B
CSS
43 lines
787 B
CSS
/**
|
|
* Lightweight base styles for the front-end form.
|
|
*/
|
|
.userform-progress .progress {
|
|
position: relative;
|
|
height: 1em;
|
|
background: #eee;
|
|
}
|
|
.userform-progress .progress-bar {
|
|
position: absolute;
|
|
height: 1em;
|
|
background: #666;
|
|
}
|
|
.userform-progress .step-buttons {
|
|
margin-left: 0;
|
|
position: relative;
|
|
}
|
|
.userform-progress .step-button-wrapper {
|
|
display: inline-block;
|
|
list-style-type: none;
|
|
}
|
|
.userform-progress .step-button-wrapper.current .step-button-jump {
|
|
background: #666;
|
|
}
|
|
.userform-progress .step-button-jump {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
.step-navigation .step-buttons {
|
|
margin-left: 0;
|
|
}
|
|
.step-navigation .step-button-wrapper {
|
|
display: inline-block;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.userform {
|
|
clear: both;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|