43 lines
787 B
CSS
Raw Normal View History

2015-08-06 14:19:05 +12:00
/**
* Lightweight base styles for the front-end form.
*/
2015-08-12 12:50:14 +12:00
.userform-progress .progress {
position: relative;
height: 1em;
background: #eee;
}
2015-08-14 10:45:25 +12:00
.userform-progress .progress-bar {
2015-08-12 12:50:14 +12:00
position: absolute;
height: 1em;
background: #666;
2015-08-06 14:19:05 +12:00
}
2015-08-10 13:28:06 +12:00
.userform-progress .step-buttons {
2015-08-12 12:50:14 +12:00
margin-left: 0;
position: relative;
2015-08-10 13:28:06 +12:00
}
2015-08-14 10:45:25 +12:00
.userform-progress .step-button-wrapper {
2015-08-12 12:50:14 +12:00
display: inline-block;
list-style-type: none;
2015-08-10 13:28:06 +12:00
}
2015-08-14 10:45:25 +12:00
.userform-progress .step-button-wrapper.current .step-button-jump {
background: #666;
}
2015-08-12 12:50:14 +12:00
.userform-progress .step-button-jump {
position: absolute;
top: 0;
2015-08-06 14:19:05 +12:00
}
2015-08-12 12:50:14 +12:00
.step-navigation .step-buttons {
margin-left: 0;
2015-08-06 14:19:05 +12:00
}
2015-08-14 10:45:25 +12:00
.step-navigation .step-button-wrapper {
2015-08-12 12:50:14 +12:00
display: inline-block;
list-style-type: none;
2015-08-06 14:19:05 +12:00
}
.userform {
2015-08-12 12:50:14 +12:00
clear: both;
2015-08-14 10:45:25 +12:00
width: 100%;
max-width: 100%;
2015-08-06 14:19:05 +12:00
}