File size: 965 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 |
.jetpack-plugins-setup {
margin: 0 auto;
max-width: 700px;
h1.is-placeholder,
p.is-placeholder {
width: inherit;
background-color: var(--color-neutral-0);
color: var(--color-neutral-0);
animation: loading-fade 1.6s ease-in-out infinite;
&::before {
content: " ";
}
}
.plugin-item__link {
cursor: default;
}
}
.jetpack-plugins-setup__header {
@include heading;
margin-bottom: 0.75em;
text-align: center;
color: var(--color-neutral-70);
}
.jetpack-plugins-setup__description {
margin-bottom: 3em;
color: var(--color-neutral-50);
text-align: center;
}
.jetpack-plugins-setup .plugin-item {
width: 100%;
&:nth-last-child(n + 2) {
border-bottom-width: 1px;
}
}
.jetpack-plugins-setup .plugin-item__finished {
color: var(--color-neutral-light);
font-size: $font-body-extra-small;
line-height: 1;
padding: 6px 0;
}
.jetpack-plugins-setup .plugin-item.card .calypso-notice.is-info .calypso-notice__icon {
display: block;
}
|