File size: 1,029 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
@import "@automattic/onboarding/styles/mixins";
@import "@automattic/typography/styles/fonts";
// A masterbar-like header just for
// the signup flow.
.signup-header {
position: absolute;
margin-top: 8px;
inset-block-start: 0;
inset-inline-start: 0;
inset-inline-end: 0;
z-index: -1;
color: var(--color-text-inverted);
// Hide the signup header on oauth
// flows like Crowdsignal
.layout:not(.dops) {
display: none;
pointer-events: none;
}
.wordpress-logo {
height: 180px;
width: 180px;
fill: var(--color-text-inverted);
margin: 0 auto;
display: block;
transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
transform: scale(0.13333);
transform-origin: 50% 0;
&.is-large {
transform: scale(1) translateY(80px);
}
}
h1 {
@include onboarding-font-recoleta;
position: absolute;
color: var(--color-text);
top: 20px;
left: 56px;
font-size: $font-body-large;
}
.signup-header__right {
position: absolute;
inset-block-start: 12px;
inset-inline-end: 16px;
}
}
|