File size: 1,297 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 |
.next-steps {
&__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
h2 {
font-size: rem(16px);
font-weight: 500;
color: var(--studio-gray-100);
}
.circular__progress-bar {
margin-right: 8px;
.circular__progress-bar-text {
font-size: rem(10px);
font-weight: 500;
line-height: 20px;
color: var(--studio-gray-100);
}
.circular__progress-bar-fill-circle {
stroke: var(--studio-jetpack-green-50);
}
}
}
p,
button {
font-size: rem(14px);
font-weight: 400;
color: var(--studio-gray-80);
}
button.dismiss {
cursor: pointer;
text-decoration: underline;
&:hover {
color: var(--studio-jetpack-green-50);
}
}
.checklist-item__task {
.checklist-item__text {
font-size: rem(14px);
font-weight: 400;
color: var(--studio-gray-80);
}
&.completed .checklist-item__text {
text-decoration: line-through;
}
&.completed.enabled:hover,
&.pending:hover,
&.completed.enabled > a:focus,
&.pending > a:focus {
.checklist-item__text {
color: var(--studio-jetpack-green-50);
}
.checklist-item__chevron,
.checklist-item__checkmark {
fill: var(--studio-jetpack-green-50);
}
}
}
}
.card:has(.next-steps) {
padding: 16px 24px;
}
|