_animations.scss
9 months ago
_booking.scss
9 months ago
_booking_animations.scss
1 year ago
_buttons.scss
9 months ago
_calendar.scss
3 months ago
_customer_dashboard.scss
9 months ago
_forms.scss
9 months ago
_grid.scss
1 year ago
_icons.scss
9 months ago
_items.scss
9 months ago
_lightbox.scss
9 months ago
_login.scss
9 months ago
_mixins.scss
1 year ago
_notifications.scss
9 months ago
_print.scss
1 year ago
_responsive.scss
9 months ago
_shared.scss
1 year ago
_shortcodes.scss
1 year ago
_type.scss
1 year ago
_utilities.scss
1 year ago
_variables.scss
9 months ago
_mixins.scss
52 lines
| 1 | @mixin slot-tooltip-info(){ |
| 2 | position: absolute; |
| 3 | top: 0; |
| 4 | left: 15px; |
| 5 | background-color: #111; |
| 6 | padding: 4px 6px; |
| 7 | color: #fff; |
| 8 | font-weight: $body-font-weight-bold; |
| 9 | display: none; |
| 10 | white-space: nowrap; |
| 11 | z-index: 9999; |
| 12 | font-size: floor($font-size-base * 1); |
| 13 | animation: 0.1s ease latepointAvailabilityPopup; |
| 14 | animation-fill-mode: both; |
| 15 | } |
| 16 | @mixin latepointfont($content:""){ |
| 17 | font-family: 'latepointIcons' !important; |
| 18 | speak: none; |
| 19 | font-style: normal; |
| 20 | font-weight: normal; |
| 21 | font-variant: normal; |
| 22 | text-transform: none; |
| 23 | line-height: 1; |
| 24 | -webkit-font-smoothing: antialiased; |
| 25 | -moz-osx-font-smoothing: grayscale; |
| 26 | content: $content; |
| 27 | } |
| 28 | |
| 29 | |
| 30 | @mixin font-headers(){ |
| 31 | font-family: $headings-font-family; |
| 32 | font-weight: $headings-font-weight-normal; |
| 33 | } |
| 34 | |
| 35 | |
| 36 | @mixin loading-circle($color: #fff, $width: 14px, $border-width: 2px){ |
| 37 | display: block; |
| 38 | content: ""; |
| 39 | width: $width!important; |
| 40 | height: $width!important; |
| 41 | border-bottom: $border-width solid $color; |
| 42 | border-left: $border-width solid $color; |
| 43 | border-top: $border-width solid $color; |
| 44 | border-right: $border-width solid rgba(255,255,255,0); |
| 45 | border-radius: 20px; |
| 46 | position: absolute; |
| 47 | top: 50%; |
| 48 | left: 50%; |
| 49 | transform: translate(-50%, -50%); |
| 50 | animation: os-loading 700ms infinite linear; |
| 51 | background-color: transparent!important; |
| 52 | } |