1
0
mirror of https://github.com/minio/docs.git synced 2025-04-22 19:02:57 +03:00
docs/source/_static/scss/includes/_content.scss
Rushan 76099f5cda
Style Quick Steps section on quickstart pages (#977)
The section can be styled by adding the container class `.. rst-class::
section-next-steps`


<img width="798" alt="Screenshot 2023-08-30 at 13 52 07"
src="https://github.com/minio/docs/assets/13393018/7ff22195-1d2a-454f-9736-ea89a58a7515">
2023-08-30 10:59:19 -05:00

54 lines
1.3 KiB
SCSS

.section-next-steps {
border: 1px solid var(--table-border-color);
border-radius: $border-radius-lg;
margin-top: 3rem;
padding: 1.5rem;
& > h2 {
margin-top: 0;
}
& > ul {
margin: 0 0 -0.5rem;
list-style: none;
padding: 0;
counter-reset: list-number;
& > li {
display: flex;
align-items: start;
& > p {
flex-grow: 1;
& > a {
display: block;
padding: 0.65rem 0;
}
}
&:not(:last-child) {
& > p {
& > a {
border-bottom: 1px dashed var(--table-border-color);
}
}
}
&:before {
counter-increment: list-number;
content: counter(list-number);
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
border: 1px solid var(--table-border-color);
margin: 0 1rem 0 -0.2rem;
display: grid;
place-content: center;
font-size: $font-size-sm;
flex-shrink: 0;
margin-top: 0.6rem;
}
}
}
}