PluginProbe
Elementor Website Builder – more than just a page builder / 3.8.0
Elementor Website Builder – more than just a page builder v3.8.0
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
elementor / app / modules / onboarding / assets / js / components / layout / header.scss

header.scss in Elementor Website Builder – more than just a page builder 3.8.0, at app/modules/onboarding/assets/js/components/layout/header.scss

85 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .e-onboarding__header {
2
3 &-logo {
4
5 .eps-app__logo {
6 background-color: $platform-darkest-gray;
7 color: $white;
8 width: 1.3rem;
9 height: 1.3rem;
10 line-height: 1.3rem;
11 font-size: 0.48rem;
12
13 &:not(:last-child) {
14 margin-inline-end: 7px;
15 }
16 }
17
18 img {
19 width: 104px;
20 }
21 }
22
23 .eps-app__header-btn {
24 display: flex;
25 align-items: center;
26 font-size: 13px;
27
28 .eps-icon:not(:last-child) {
29 margin-inline-end: 7px;
30 }
31 }
32
33 .eps-button {
34 color: $platform-darkest-gray;
35
36 &__go-pro-btn {
37 background-color: $platform-accent;
38 color: $white;
39 padding: 4px 8px;
40 border-radius: 4px;
41 font-weight: 700;
42 font-size: 12px;
43 transition: 0.5s;
44
45 &:hover {
46 background: lighten($platform-accent, 10%)
47 }
48 }
49 }
50 }
51
52 .e-onboarding__go-pro {
53 width: 288px;
54 font-size: 12px;
55
56 &-title {
57 font-size: 18px;
58 font-weight: 700;
59 color: $platform-accent;
60 }
61
62 &-cta {
63 display: inline-block;
64 color: $platform-accent;
65 padding: 9px;
66 border: 1px solid $platform-accent;
67
68 // Specificity.
69 &.e-onboarding__button {
70 font-size: 14px;
71 }
72 }
73
74 &-paragraph {
75
76 &:not(:last-child) {
77 margin-bottom: 20px;
78 }
79 }
80
81 &-already-have {
82 text-decoration: underline;
83 }
84 }
85