LaravelTest
194 строки · 3.8 Кб
1/*!
2* bsStepper v1.7.0 (https://github.com/Johann-S/bs-stepper)
3* Copyright 2018 - 2019 Johann-S <johann.servoire@gmail.com>
4* Licensed under MIT (https://github.com/Johann-S/bs-stepper/blob/master/LICENSE)
5*/
6
7.bs-stepper .step-trigger {8display: -ms-inline-flexbox;9display: inline-flex;10-ms-flex-wrap: wrap;11flex-wrap: wrap;12-ms-flex-align: center;13align-items: center;14-ms-flex-pack: center;15justify-content: center;16padding: 20px;17font-size: 1rem;18font-weight: 700;19line-height: 1.5;20color: #6c757d;21text-align: center;22text-decoration: none;23white-space: nowrap;24vertical-align: middle;25-webkit-user-select: none;26-moz-user-select: none;27-ms-user-select: none;28user-select: none;29background-color: transparent;30border: none;31border-radius: .25rem;32transition: background-color .15s ease-out, color .15s ease-out;33}
34
35.bs-stepper .step-trigger:not(:disabled):not(.disabled) {36cursor: pointer;37}
38
39.bs-stepper .step-trigger:disabled,
40.bs-stepper .step-trigger.disabled {41pointer-events: none;42opacity: .65;43}
44
45.bs-stepper .step-trigger:focus {46color: #007bff;47outline: none;48}
49
50.bs-stepper .step-trigger:hover {51text-decoration: none;52background-color: rgba(0, 0, 0, .06);53}
54
55@media (max-width: 520px) {56.bs-stepper .step-trigger {57-ms-flex-direction: column;58flex-direction: column;59padding: 10px;60}61}
62
63.bs-stepper-label {64display: inline-block;65margin: .25rem;66}
67
68.bs-stepper-header {69display: -ms-flexbox;70display: flex;71-ms-flex-align: center;72align-items: center;73}
74
75@media (max-width: 520px) {76.bs-stepper-header {77margin: 0 -10px;78text-align: center;79}80}
81
82.bs-stepper-line,
83.bs-stepper .line {84-ms-flex: 1 0 32px;85flex: 1 0 32px;86min-width: 1px;87min-height: 1px;88margin: auto;89background-color: rgba(0, 0, 0, .12);90}
91
92@media (max-width: 400px) {93.bs-stepper-line,94.bs-stepper .line {95-ms-flex-preferred-size: 20px;96flex-basis: 20px;97}98}
99
100.bs-stepper-circle {101display: -ms-inline-flexbox;102display: inline-flex;103-ms-flex-line-pack: center;104align-content: center;105-ms-flex-pack: center;106justify-content: center;107width: 2em;108height: 2em;109padding: .5em 0;110margin: .25rem;111line-height: 1em;112color: #fff;113background-color: #6c757d;114border-radius: 1em;115}
116
117.active .bs-stepper-circle {118background-color: #007bff;119}
120
121.bs-stepper-content {122padding: 0 20px 20px;123}
124
125@media (max-width: 520px) {126.bs-stepper-content {127padding: 0;128}129}
130
131.bs-stepper.vertical {132display: -ms-flexbox;133display: flex;134}
135
136.bs-stepper.vertical .bs-stepper-header {137-ms-flex-direction: column;138flex-direction: column;139-ms-flex-align: stretch;140align-items: stretch;141margin: 0;142}
143
144.bs-stepper.vertical .bs-stepper-pane,
145.bs-stepper.vertical .content {146display: block;147}
148
149.bs-stepper.vertical .bs-stepper-pane:not(.fade),
150.bs-stepper.vertical .content:not(.fade) {151display: block;152visibility: hidden;153}
154
155.bs-stepper-pane:not(.fade),
156.bs-stepper .content:not(.fade) {157display: none;158}
159
160.bs-stepper .content.fade,
161.bs-stepper-pane.fade {162visibility: hidden;163transition-duration: .3s;164transition-property: opacity;165}
166
167.bs-stepper-pane.fade.active,
168.bs-stepper .content.fade.active {169visibility: visible;170opacity: 1;171}
172
173.bs-stepper-pane.active:not(.fade),
174.bs-stepper .content.active:not(.fade) {175display: block;176visibility: visible;177}
178
179.bs-stepper-pane.dstepper-block,
180.bs-stepper .content.dstepper-block {181display: block;182}
183
184.bs-stepper:not(.vertical) .bs-stepper-pane.dstepper-none,
185.bs-stepper:not(.vertical) .content.dstepper-none {186display: none;187}
188
189.vertical .bs-stepper-pane.fade.dstepper-none,
190.vertical .content.fade.dstepper-none {191visibility: hidden;192}
193
194/*# sourceMappingURL=bs-stepper.css.map */