adapter
5 months ago
font-awesome
5 years ago
images
6 years ago
index.html
6 years ago
inspector.css
4 years ago
percentage-circle.css
4 years ago
vikappointments.css
1 year ago
wizard.css
4 years ago
wizard.css
125 lines
| 1 | /* wizard toolbar */ |
| 2 | |
| 3 | .vap-wizard-toolbar { |
| 4 | display: flex; |
| 5 | align-items: center; |
| 6 | margin-top: 15px; |
| 7 | } |
| 8 | .vap-wizard-toolbar .vap-wizard-text { |
| 9 | flex: 1; |
| 10 | } |
| 11 | |
| 12 | /* wizard steps */ |
| 13 | |
| 14 | .vap-wizard-steps { |
| 15 | margin: 15px -10px 0 -10px; |
| 16 | margin-top: 15px; |
| 17 | display: flex; |
| 18 | flex-wrap: wrap; |
| 19 | } |
| 20 | |
| 21 | .vap-wizard-steps .wizard-step-outer { |
| 22 | padding: 10px; |
| 23 | width: calc(100% / 3 - 20px); |
| 24 | } |
| 25 | |
| 26 | .vap-wizard-steps .wizard-step { |
| 27 | padding: 0; |
| 28 | height: 100%; |
| 29 | } |
| 30 | |
| 31 | .vap-wizard .wizard-step .wizard-step-top-bar { |
| 32 | background: #ccc; |
| 33 | padding: 15px; |
| 34 | border-top-left-radius: 6px; |
| 35 | border-top-right-radius: 6px; |
| 36 | } |
| 37 | .vap-wizard .wizard-step .wizard-step-top-bar.completed { |
| 38 | background: #537e47; |
| 39 | color: #fff; |
| 40 | } |
| 41 | .vap-wizard .wizard-step .wizard-step-top-bar .top-bar-primary { |
| 42 | font-size: 16px; |
| 43 | font-weight: bold; |
| 44 | } |
| 45 | |
| 46 | .vap-wizard .wizard-step .wizard-step-body { |
| 47 | background: #f1f1f1; |
| 48 | padding: 10px; |
| 49 | height: calc(100% - 120px); |
| 50 | } |
| 51 | |
| 52 | .vap-wizard .wizard-step .wizard-step-footer-bar { |
| 53 | background: #f1f1f1; |
| 54 | padding: 10px; |
| 55 | border-bottom-left-radius: 6px; |
| 56 | border-bottom-right-radius: 6px; |
| 57 | display: inline-table; |
| 58 | width: calc(100% - 20px); |
| 59 | } |
| 60 | .vap-wizard .wizard-step .wizard-step-footer-bar .btn-success { |
| 61 | float: right; |
| 62 | } |
| 63 | |
| 64 | .vap-wizard p { |
| 65 | padding: 0; |
| 66 | } |
| 67 | |
| 68 | /* wizard form */ |
| 69 | |
| 70 | .vap-wizard .wizard-step .wizard-form { |
| 71 | margin-top: 10px; |
| 72 | } |
| 73 | .vap-wizard .wizard-step .wizard-form .control-group { |
| 74 | margin-bottom: 15px; |
| 75 | } |
| 76 | .vap-wizard .wizard-step .wizard-form .control-label { |
| 77 | display: inline-block; |
| 78 | float: left; |
| 79 | padding-right: 5px; |
| 80 | padding-top: 5px; |
| 81 | width: 120px; |
| 82 | } |
| 83 | .vap-wizard .wizard-step .wizard-form .controls { |
| 84 | display: flex; |
| 85 | } |
| 86 | .vap-wizard .wizard-step .wizard-form .controls .switch-ios { |
| 87 | margin-bottom: -5px; |
| 88 | } |
| 89 | .vap-wizard .wizard-step .wizard-form .controls i { |
| 90 | margin-top: 5px; |
| 91 | } |
| 92 | .vap-wizard .wizard-step .wizard-form .controls input[type="text"], |
| 93 | .vap-wizard .wizard-step .wizard-form .controls input[type="email"], |
| 94 | .vap-wizard .wizard-step .wizard-form .controls input[type="tel"], |
| 95 | .vap-wizard .wizard-step .wizard-form .controls textarea, |
| 96 | .vap-wizard .wizard-step .wizard-form .controls select, |
| 97 | .vap-wizard .wizard-step .wizard-form .controls .chzn-container { |
| 98 | flex: 1; |
| 99 | margin: 0; |
| 100 | } |
| 101 | |
| 102 | /* wizard summary */ |
| 103 | |
| 104 | .vap-wizard .wizard-step ul.wizard-step-summary li { |
| 105 | margin-bottom: 4px; |
| 106 | } |
| 107 | .vap-wizard .wizard-step ul.wizard-step-summary li i { |
| 108 | margin-right: 2px; |
| 109 | } |
| 110 | |
| 111 | /* wizard responsiveness */ |
| 112 | |
| 113 | @media screen and (max-width: 1280px) { |
| 114 | /* show only 2 blocks per row */ |
| 115 | .vap-wizard-steps .wizard-step-outer { |
| 116 | width: calc(100% / 2 - 20px); |
| 117 | } |
| 118 | } |
| 119 | @media screen and (max-width: 767px) { |
| 120 | /* show only 1 block per row */ |
| 121 | .vap-wizard-steps .wizard-step-outer { |
| 122 | width: 100%; |
| 123 | } |
| 124 | } |
| 125 |