| 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 |
|