_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
_header.scss
106 lines
| 1 | .ob-migration { |
| 2 | padding-top: 20px; |
| 3 | margin-bottom: 20px; |
| 4 | |
| 5 | .card.starter-site-card { |
| 6 | margin-right: auto !important; |
| 7 | margin-left: auto !important; |
| 8 | |
| 9 | .image { |
| 10 | height: auto; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | .actions { |
| 15 | margin: 30px auto 0; |
| 16 | display: flex; |
| 17 | justify-content: center; |
| 18 | } |
| 19 | |
| 20 | button:last-child { |
| 21 | margin-left: 10px; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | .ob-head > .header-container >, .ob-migration > { |
| 26 | h2 { |
| 27 | font-size: 21px; |
| 28 | color: $black; |
| 29 | margin: 0; |
| 30 | line-height: 1.6; |
| 31 | display: flex; |
| 32 | align-items: center; |
| 33 | |
| 34 | > img { |
| 35 | margin-right: 20px; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | p { |
| 40 | margin: 20px 0; |
| 41 | font-size: 15px; |
| 42 | color: $black; |
| 43 | } |
| 44 | |
| 45 | button { |
| 46 | margin-bottom: 20px; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | .header-form { |
| 51 | margin-top: 20px; |
| 52 | display: flex; |
| 53 | align-items: center; |
| 54 | flex-direction: column; |
| 55 | |
| 56 | input { |
| 57 | margin: 0; |
| 58 | display: block; |
| 59 | flex-grow: 1; |
| 60 | border: 1px solid $grey; |
| 61 | height: 52px; |
| 62 | padding: 5px 30px 5px 50px; |
| 63 | font-size: 17px; |
| 64 | font-weight: 300; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | @mixin ob-header--tablet { |
| 69 | .ob-head > .header-container >, .ob-migration > { |
| 70 | h2 { |
| 71 | font-size: 30px; |
| 72 | } |
| 73 | |
| 74 | p { |
| 75 | font-size: 22px; |
| 76 | } |
| 77 | } |
| 78 | .header-form { |
| 79 | flex-direction: row; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | @mixin ob-header--laptop { |
| 84 | .header-form { |
| 85 | margin-top: 25px; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | |
| 90 | .is-icon-btn { |
| 91 | background-color: #f1f1f1; |
| 92 | color: #0073aa !important; |
| 93 | border-radius: 6px; |
| 94 | |
| 95 | &:hover { |
| 96 | background-color: #f7f7f7; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | .is-not-valid { |
| 101 | color: red !important; |
| 102 | } |
| 103 | .is-valid { |
| 104 | color: green !important; |
| 105 | } |
| 106 |