container.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 2.25.0, at settings/containers/container.scss
| 1 | @import "../../gutenberg/variables"; |
| 2 | |
| 3 | .ghostkit-admin-head { |
| 4 | padding: 5px 20px; |
| 5 | margin: -35px; |
| 6 | margin-bottom: 35px; |
| 7 | background-color: #fff; |
| 8 | border-bottom: 1px solid $color-light-gray-darken; |
| 9 | |
| 10 | h1 { |
| 11 | margin: 6px 10px; |
| 12 | margin-bottom: 8px; |
| 13 | font-size: 1.3em; |
| 14 | } |
| 15 | |
| 16 | svg { |
| 17 | display: block; |
| 18 | width: 30px; |
| 19 | height: auto; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | .ghostkit-admin-head-wrap { |
| 24 | display: flex; |
| 25 | flex-wrap: wrap; |
| 26 | align-items: center; |
| 27 | } |
| 28 | |
| 29 | .ghostkit-admin-content { |
| 30 | max-width: 1000px; |
| 31 | margin: 0 auto; |
| 32 | |
| 33 | > h2 { |
| 34 | margin-bottom: 35px; |
| 35 | font-size: 1.8em; |
| 36 | font-weight: 400; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | .ghostkit-admin-tabs { |
| 41 | display: flex; |
| 42 | flex-wrap: wrap; |
| 43 | margin: 0; |
| 44 | margin-left: 15px; |
| 45 | list-style: none; |
| 46 | |
| 47 | > li { |
| 48 | margin: 0; |
| 49 | } |
| 50 | |
| 51 | button { |
| 52 | position: relative; |
| 53 | padding: 10px; |
| 54 | margin: 0 2px; |
| 55 | font-size: 1.1em; |
| 56 | cursor: pointer; |
| 57 | background: none; |
| 58 | border: none; |
| 59 | outline: none; |
| 60 | |
| 61 | &:hover { |
| 62 | color: var(--wp-admin-theme-color); |
| 63 | } |
| 64 | |
| 65 | &.ghostkit-admin-tabs-button-active::after { |
| 66 | position: absolute; |
| 67 | right: 0; |
| 68 | bottom: -5px; |
| 69 | left: 0; |
| 70 | display: block; |
| 71 | height: 3px; |
| 72 | content: ""; |
| 73 | background-color: var(--wp-admin-theme-color); |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 |