File size: 2,161 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
@import "@automattic/color-studio/dist/color-variables";
.promote-post-i2 {
.promote-post-i2__outer-wrapper {
background-color: $studio-gray-0;
width: 100%;
}
.promote-post-i2__inner-container {
display: flex;
flex-direction: column;
padding-bottom: 95px;
.setup-pages__title {
font-weight: 400;
font-size: 2.75rem;
margin: 0 auto 20px;
&.width-fix {
max-width: 470px;
}
}
.setup-pages__body {
font-size: $font-body;
text-wrap: balance;
}
}
.promote-post-i2__footer-text {
margin-bottom: 0;
padding-top: 32px;
}
.empty-promotion-list__container.promote-post-i2__setup-container {
display: flex;
flex-direction: column;
margin-top: 30px;
min-height: calc(100vh - 180px); // the size of the top bar and footer
.promote-post-i2__setup-icon {
margin: 95px 0 30px;
img {
max-width: 200px;
width: 100%;
}
}
.promote-post-i2__active-steps {
align-self: center;
margin: 0;
width: 100%;
li {
align-items: center;
background-color: $studio-white;
border-radius: 4px;
box-sizing: border-box;
display: flex;
font-size: $font-body;
margin: 0 auto 8px;
max-width: 520px;
padding: 16px;
text-align: left;
width: 100%;
span {
align-items: center;
border-radius: 100%;
color: $studio-white;
display: inline-flex;
height: 32px;
justify-content: center;
line-height: 1;
margin-right: 16px;
min-width: 32px;
width: 32px;
}
&:nth-child(1) {
span {
background-color: #b99ad3;
}
}
&:nth-child(2) {
span {
background-color: #814bb0;
}
}
&:nth-child(3) {
span {
background-color: #492a63;
}
}
h4 {
font-size: 1rem;
font-weight: 700;
margin: 5px 0 9px;
}
button {
margin-bottom: 1.5rem;
}
}
.promote-post-i2__step-icon-container {
align-items: center;
align-self: flex-start;
display: flex;
flex-direction: column;
height: 33px;
justify-content: center;
margin-right: 20px;
min-width: 32px;
width: 32px;
}
}
}
}
|