_animations.scss
1 year ago
_auth.scss
9 months ago
_booking_form_summary.scss
9 months ago
_clean_layout.scss
9 months ago
_step_customer.scss
9 months ago
_step_datepicker.scss
9 months ago
_variables.scss
1 year ago
_step_customer.scss
95 lines
| 1 | /*! |
| 2 | * Copyright (c) 2024 LatePoint LLC. All rights reserved. |
| 3 | */ |
| 4 | |
| 5 | |
| 6 | .os-step-tabs { |
| 7 | display: flex; |
| 8 | color: $color-faded; |
| 9 | margin-bottom: 20px; |
| 10 | font-weight: $body-font-weight-bold; |
| 11 | font-size: floor($font-size-base); |
| 12 | line-height: floor($font-size-base); |
| 13 | justify-content: space-between; |
| 14 | align-items: flex-end; |
| 15 | box-shadow: 0px 1px 0px 0px #E2E5EF; |
| 16 | height: floor($font-size-base + 20); |
| 17 | .os-step-tab { |
| 18 | transition: all 0.2s ease; |
| 19 | text-align: center; |
| 20 | padding: 8px 0px; |
| 21 | position: relative; |
| 22 | line-height: floor($font-size-base); |
| 23 | font-size: floor($font-size-base); |
| 24 | &:hover { |
| 25 | cursor: pointer; |
| 26 | color: $body-color; |
| 27 | } |
| 28 | &:before { |
| 29 | position: absolute; |
| 30 | content: ""; |
| 31 | background-color: $brand-primary; |
| 32 | height: 3px; |
| 33 | left: 0px; |
| 34 | bottom: -1px; |
| 35 | width: 0%; |
| 36 | } |
| 37 | &.active { |
| 38 | color: $body-color; |
| 39 | font-size: $body-font-size-m; |
| 40 | padding-bottom: 12px; |
| 41 | padding-top: 8px; |
| 42 | &:before { |
| 43 | width: 100%; |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | .step-customer-logged-in-header-w { |
| 50 | display: flex; |
| 51 | color: #898C98; |
| 52 | margin-bottom: 20px; |
| 53 | font-weight: $body-font-weight-bold; |
| 54 | font-size: floor($font-size-base); |
| 55 | line-height: floor($font-size-base); |
| 56 | justify-content: space-between; |
| 57 | align-items: center; |
| 58 | border-bottom: 1px solid #E2E5EF; |
| 59 | height: floor($font-size-base + 20); |
| 60 | span { |
| 61 | display: block; |
| 62 | margin-right: 5px; |
| 63 | margin-left: auto; |
| 64 | } |
| 65 | a { |
| 66 | display: block; |
| 67 | color: $brand-primary; |
| 68 | text-decoration: underline; |
| 69 | } |
| 70 | div { |
| 71 | color: $body-color; |
| 72 | font-size: $body-font-size-m; |
| 73 | line-height: floor($font-size-base); |
| 74 | padding-bottom: 12px; |
| 75 | padding-top: 8px; |
| 76 | position: relative; |
| 77 | &:before { |
| 78 | position: absolute; |
| 79 | content: ""; |
| 80 | background-color: $brand-primary; |
| 81 | height: 2px; |
| 82 | left: 0px; |
| 83 | bottom: -1px; |
| 84 | width: 100%; |
| 85 | transition: all 0.2s ease; |
| 86 | } |
| 87 | } |
| 88 | } |
| 89 | .os-form-buttons { |
| 90 | align-items: flex-start; |
| 91 | } |
| 92 | .os-step-existing-customer-login-w { |
| 93 | margin-bottom: 10px; |
| 94 | } |
| 95 |