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