_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
1 week 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
_shortcodes.scss
94 lines
| 1 | /*! |
| 2 | * Copyright (c) 2022 LatePoint LLC. All rights reserved. |
| 3 | */ |
| 4 | |
| 5 | .latepoint-resources-items-w { |
| 6 | display: grid; |
| 7 | margin: 40px 0px; |
| 8 | align-items: start; |
| 9 | &.resources-columns-2 { |
| 10 | grid-template-columns: 1fr 1fr; |
| 11 | grid-gap: 50px; |
| 12 | } |
| 13 | &.resources-columns-3 { |
| 14 | grid-template-columns: 1fr 1fr 1fr; |
| 15 | grid-gap: 40px; |
| 16 | } |
| 17 | &.resources-columns-4 { |
| 18 | grid-template-columns: 1fr 1fr 1fr 1fr; |
| 19 | grid-gap: 30px; |
| 20 | } |
| 21 | &.resources-columns-5 { |
| 22 | grid-template-columns: 1fr 1fr 1fr 1fr 1fr; |
| 23 | grid-gap: 20px; |
| 24 | } |
| 25 | .resource-item { |
| 26 | box-shadow: 0 2px 18px -6px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.1); |
| 27 | padding: 20px; |
| 28 | background-color: #fff; |
| 29 | transition: all 0.2s ease; |
| 30 | height: 100%; |
| 31 | overflow: hidden; |
| 32 | |
| 33 | &.ri-centered { |
| 34 | text-align: center; |
| 35 | } |
| 36 | &:hover { |
| 37 | box-shadow: 0 5px 24px -9px rgba(0, 0, 0, 0.4), 0 3px 6px 0 rgba(0, 0, 0, 0.2); |
| 38 | transform: translateY(-2px); |
| 39 | } |
| 40 | .ri-avatar { |
| 41 | border-radius: 50%; |
| 42 | width: 80px; |
| 43 | height: 80px; |
| 44 | background-position: center center; |
| 45 | background-size: cover; |
| 46 | background-repeat: no-repeat; |
| 47 | margin: 0 auto 20px auto; |
| 48 | } |
| 49 | .ri-map { |
| 50 | margin: -20px -20px 0 -20px; |
| 51 | margin-bottom: 25px; |
| 52 | } |
| 53 | .ri-media { |
| 54 | padding-bottom: 75%; |
| 55 | margin: -20px -20px 0 -20px; |
| 56 | background-size: cover; |
| 57 | background-repeat: no-repeat; |
| 58 | background-position: bottom center; |
| 59 | margin-bottom: 25px; |
| 60 | } |
| 61 | .ri-name { |
| 62 | h3 { |
| 63 | margin: 10px 0px; |
| 64 | font-size: floor($headings-font-size * 1.5); |
| 65 | } |
| 66 | } |
| 67 | .ri-title { |
| 68 | color: $brand-primary; |
| 69 | font-weight: $body-font-weight-bold; |
| 70 | font-size: $font-size-base; |
| 71 | } |
| 72 | .ri-price { |
| 73 | color: $brand-primary; |
| 74 | font-weight: $body-font-weight-bold; |
| 75 | font-size: 20px; |
| 76 | margin-bottom: 10px; |
| 77 | } |
| 78 | .ri-description { |
| 79 | color: $color-faded; |
| 80 | font-size: $font-size-base; |
| 81 | font-weight: $body-font-weight-normal; |
| 82 | margin-bottom: 10px; |
| 83 | line-height: 1.3; |
| 84 | } |
| 85 | .ri-external-link { |
| 86 | margin-left: 3px; |
| 87 | display: inline-block; |
| 88 | } |
| 89 | .ri-buttons { |
| 90 | margin-top: 20px; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | } |