PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.4.4
Block Animations, Motion & Scroll Effects – Ghost Kit v3.4.4
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / settings / containers / container.scss

container.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.4.4, at settings/containers/container.scss

72 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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