install.php
69 lines
| 1 | <style> |
| 2 | #wpwrap { |
| 3 | color: var(--sc-color-brand-body); |
| 4 | background: var(--sc-color-brand-main-background); |
| 5 | } |
| 6 | |
| 7 | .wrap { |
| 8 | display: grid; |
| 9 | height: calc(100vh - 32px); |
| 10 | } |
| 11 | |
| 12 | .sc-container { |
| 13 | margin: auto; |
| 14 | max-width: 500px; |
| 15 | padding: 2rem; |
| 16 | } |
| 17 | |
| 18 | .sc-section-heading { |
| 19 | margin-bottom: 0.5rem; |
| 20 | display: flex; |
| 21 | align-items: center; |
| 22 | justify-content: space-between; |
| 23 | /* border-bottom: 1px solid rgba(229, 231, 235, 1); */ |
| 24 | /* padding-bottom: 1rem; */ |
| 25 | } |
| 26 | |
| 27 | .sc-section-heading h3 { |
| 28 | margin: 0; |
| 29 | overflow: hidden; |
| 30 | text-overflow: ellipsis; |
| 31 | white-space: nowrap; |
| 32 | font-size: 1.25rem; |
| 33 | line-height: 1.75rem; |
| 34 | font-weight: 600; |
| 35 | color: rgba(17, 24, 39, 1); |
| 36 | display: flex; |
| 37 | align-items: center; |
| 38 | gap: 0.5em; |
| 39 | color: var(--sc-color-brand-heading); |
| 40 | } |
| 41 | </style> |
| 42 | |
| 43 | <div class="wrap"> |
| 44 | <div class="sc-container"> |
| 45 | <div class="sc-section-heading"> |
| 46 | <h3> |
| 47 | <sc-icon name="shopping-bag"></sc-icon> |
| 48 | <?php esc_html_e( 'Welcome to SureCart!', 'surecart' ); ?> |
| 49 | </h3> |
| 50 | </div> |
| 51 | <sc-dashboard-module> |
| 52 | <sc-card> |
| 53 | <sc-text style="--font-size: var(--sc-font-size-x-large); --line-height: var(--sc-line-height-normal)"> |
| 54 | <?php esc_html_e( 'Commerce on WordPress has never been easier, faster, or more flexible.', 'surecart' ); ?> |
| 55 | </sc-text> |
| 56 | <sc-button type="primary" full size="large" href="<?php echo esc_url_raw( $url ); ?>"> |
| 57 | <?php esc_html_e( 'Set Up My Store', 'surecart' ); ?> |
| 58 | <sc-icon name="arrow-right" slot="suffix"></sc-icon> |
| 59 | </sc-button> |
| 60 | </sc-card> |
| 61 | <!-- |
| 62 | <sc-text style="--font-size: var(--sc-font-sizesmall); --line-height: var(--sc-line-height-normal); --text-align: center; --color: var(--sc-color-gray-500)"> |
| 63 | By clicking "Set Up", you agree to our <a href="#" target="_blank">Terms of Service</a>. |
| 64 | </sc-text> |
| 65 | --> |
| 66 | </sc-dashboard-module> |
| 67 | </div> |
| 68 | </div> |
| 69 |