_fancy-radio.scss
1 year ago
_helpers.scss
7 months ago
_modals.scss
1 year ago
_notifications.scss
7 months ago
_preview.scss
7 months ago
_select2.scss
1 year ago
_variables.scss
7 months ago
_preview.scss
125 lines
| 1 | @use "variables" as *; |
| 2 | |
| 3 | #nitropack-preview-site-container { |
| 4 | padding-bottom: 1.5rem; |
| 5 | .progress-wrapper { |
| 6 | margin-bottom: 2rem; |
| 7 | } |
| 8 | h1 { |
| 9 | font-size: 1.25rem; |
| 10 | color: $gray-700; |
| 11 | font-weight: bold; |
| 12 | margin-bottom: 0.5rem; |
| 13 | } |
| 14 | .text-content { |
| 15 | margin: 2rem 0; |
| 16 | font-size: 1rem; |
| 17 | color: $gray-600; |
| 18 | p { |
| 19 | font-size: 1rem; |
| 20 | color: $gray-600; |
| 21 | } |
| 22 | ol { |
| 23 | margin: .5rem 0 .5rem 1.25rem; |
| 24 | li { |
| 25 | margin: 0; |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | } |
| 30 | .modes-container { |
| 31 | display: grid; |
| 32 | grid-gap: 0.5rem; |
| 33 | grid-template-columns: 1fr 1fr 1fr 1fr; |
| 34 | grid-auto-columns: 1fr; |
| 35 | margin: 2rem 0; |
| 36 | |
| 37 | @media (max-width: 1024px) { |
| 38 | grid-template-columns: 1fr 1fr; |
| 39 | } |
| 40 | |
| 41 | @media (max-width: 768px) { |
| 42 | grid-template-columns: 1fr; |
| 43 | } |
| 44 | } |
| 45 | .modes-container .mode { |
| 46 | border: 1px solid $gray-300; |
| 47 | border-radius: $border-radius; |
| 48 | padding: 1rem; |
| 49 | display: flex; |
| 50 | justify-content: space-between; |
| 51 | flex-direction: column; |
| 52 | align-self: stretch; |
| 53 | .mode-header { |
| 54 | display: flex; |
| 55 | align-items: center; |
| 56 | margin-bottom: 1rem; |
| 57 | } |
| 58 | .select-mode { |
| 59 | margin-top: $gutter * 2; |
| 60 | text-align: center; |
| 61 | .icon { |
| 62 | margin-right: 0.5rem; |
| 63 | } |
| 64 | &.selected { |
| 65 | border: 0; |
| 66 | pointer-events: none; // styles for selected mode |
| 67 | } |
| 68 | } |
| 69 | h3 { |
| 70 | margin-bottom: 0; |
| 71 | } |
| 72 | p { |
| 73 | color: $gray-500; |
| 74 | } |
| 75 | &.active { |
| 76 | border-color: $primary-color; |
| 77 | background-color: $purple-50; |
| 78 | } |
| 79 | } |
| 80 | .chevron-wrapper { |
| 81 | display: flex; |
| 82 | flex-direction: column; |
| 83 | justify-content: center; |
| 84 | margin-right: 0.5rem; |
| 85 | } |
| 86 | .go-live-container { |
| 87 | gap: 1rem; |
| 88 | display: flex; |
| 89 | } |
| 90 | //modal |
| 91 | #go-live-modal { |
| 92 | .active-mode { |
| 93 | font-weight: bold; |
| 94 | } |
| 95 | } |
| 96 | .free-plan-info { |
| 97 | margin-top: 1.5rem; |
| 98 | } |
| 99 | .nitropack-badge-wrapper { |
| 100 | display: flex; |
| 101 | align-items: center; |
| 102 | justify-content: center; |
| 103 | border-radius: $border-radius; |
| 104 | border: 1px solid $divider-color; |
| 105 | width: 32rem; |
| 106 | margin: 0.5rem auto 0 auto; |
| 107 | .logo-wrapper { |
| 108 | position: relative; |
| 109 | } |
| 110 | .optimized-by { |
| 111 | position: absolute; |
| 112 | top: -7px; |
| 113 | left: 27px; |
| 114 | font-size: 0.45rem; |
| 115 | } |
| 116 | .badge-text { |
| 117 | &:before { |
| 118 | content: " | "; |
| 119 | margin: 0 0.5rem; |
| 120 | } |
| 121 | font-size: 0.75rem; |
| 122 | color: $gray-600; |
| 123 | } |
| 124 | } |
| 125 |