admin
1 year ago
front
1 year ago
shared
1 year ago
vendor
1 year ago
_reboot.scss
1 year ago
_shared_mixins.scss
1 year ago
admin.scss
1 year ago
front.scss
1 year ago
_shared_mixins.scss
52 lines
| 1 | /*! |
| 2 | * Copyright (c) 2023 LatePoint LLC. All rights reserved. |
| 3 | */ |
| 4 | |
| 5 | |
| 6 | @mixin latepoint-book-button { |
| 7 | line-height: 1em; |
| 8 | //display: inline-block; |
| 9 | //background-color: $brand-primary; |
| 10 | //padding: 10px 20px; |
| 11 | //font-weight: $body-font-weight-bold; |
| 12 | //color: #fff; |
| 13 | //font-size: 16px; |
| 14 | //line-height: 1.2; |
| 15 | //border: none; |
| 16 | //box-shadow: none; |
| 17 | //border-radius: 0px; |
| 18 | //text-decoration: none; |
| 19 | //outline: none; |
| 20 | cursor: pointer; |
| 21 | transition: initial; |
| 22 | &:focus, |
| 23 | &:hover { |
| 24 | //box-shadow: none; |
| 25 | //background-color: color-mix(in srgb,var(--latepoint-brand-primary),#fff 10%);; |
| 26 | //color: #fff; |
| 27 | //text-decoration: none; |
| 28 | } |
| 29 | |
| 30 | &.os-loading { |
| 31 | transition: all .2s linear; |
| 32 | color: transparent!important; |
| 33 | position: relative; |
| 34 | &:after { |
| 35 | display: block; |
| 36 | content: ""; |
| 37 | width: 14px!important; |
| 38 | height: 14px!important; |
| 39 | border-bottom: 2px solid #fff; |
| 40 | border-left: 2px solid #fff; |
| 41 | border-top: 2px solid #fff; |
| 42 | border-right: 2px solid rgba(255,255,255,0); |
| 43 | border-radius: 20px; |
| 44 | position: absolute; |
| 45 | top: 50%; |
| 46 | left: 50%; |
| 47 | transform: translate(-50%, -50%); |
| 48 | animation: os-loading 700ms infinite linear; |
| 49 | background-color: transparent!important; |
| 50 | } |
| 51 | } |
| 52 | } |