_card.scss
5 years ago
_custom-tooltip.scss
3 years ago
_demo-site-templates.scss
5 years ago
_docnotice.scss
2 years ago
_editor-selector.scss
2 years ago
_editor-tabs.scss
4 years ago
_feedback.scss
2 years ago
_general.scss
3 years ago
_header.scss
3 years ago
_import-modal.scss
3 years ago
_library.scss
2 years ago
_license.scss
3 years ago
_media-queries.scss
4 years ago
_mock.scss
5 years ago
_new-tc-notice.scss
1 year ago
_notification.scss
4 years ago
_preview.scss
5 years ago
_search.scss
4 years ago
_settings.scss
2 years ago
_starter-site-card.scss
4 years ago
_stepper.scss
3 years ago
_sticky-nav.scss
5 years ago
_vars.scss
5 years ago
_preview.scss
66 lines
| 1 | $base-index: 100000; |
| 2 | |
| 3 | .ob-preview { |
| 4 | background-color: #fff; |
| 5 | position: fixed; |
| 6 | top: 0; |
| 7 | bottom: 0; |
| 8 | left: 0; |
| 9 | right: 0; |
| 10 | z-index: $base-index; |
| 11 | height: 100vh; |
| 12 | margin: 0; |
| 13 | display: flex; |
| 14 | flex-direction: column; |
| 15 | |
| 16 | .loading { |
| 17 | bottom: 0; |
| 18 | top: 0; |
| 19 | left: 0; |
| 20 | right: 0; |
| 21 | position: absolute; |
| 22 | display: flex; |
| 23 | align-items: center; |
| 24 | justify-content: center; |
| 25 | z-index: $base-index; |
| 26 | color: $dark-grey; |
| 27 | |
| 28 | svg { |
| 29 | animation-name: spin; |
| 30 | animation-duration: 2000ms; |
| 31 | animation-iteration-count: infinite; |
| 32 | animation-timing-function: linear; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | .preview { |
| 37 | display: flex; |
| 38 | flex-direction: column; |
| 39 | position: relative; |
| 40 | flex-grow: 1; |
| 41 | |
| 42 | iframe { |
| 43 | flex-grow: 1; |
| 44 | position: relative; |
| 45 | z-index: $base-index+1; |
| 46 | height: 100%; |
| 47 | width: 100%; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | .bottom-bar { |
| 52 | border-top: 1px solid $grey; |
| 53 | display: flex; |
| 54 | padding: 15px 30px; |
| 55 | align-items: center; |
| 56 | |
| 57 | .actions { |
| 58 | margin-left: auto; |
| 59 | } |
| 60 | |
| 61 | .heading { |
| 62 | margin: 0 0 0 20px; |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 |