mirror of https://github.com/linkerd/linkerd2.git
68 lines
1.1 KiB
CSS
68 lines
1.1 KiB
CSS
@import 'styles.css';
|
|
@import 'font-awesome.min.css';
|
|
|
|
.call-to-action {
|
|
padding: 16px 0;
|
|
|
|
& code {
|
|
background-color: rgba(47, 128, 237, 1);
|
|
color: white;
|
|
font-size: .9rem;
|
|
letter-spacing: 0px;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
& .summary {
|
|
color: var(--green);
|
|
|
|
}
|
|
|
|
& .action-steps div {
|
|
height: 41px;
|
|
line-height: 41px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
& .step-container {
|
|
border-radius: calc(var(--base-width)*4);
|
|
width: 98%
|
|
}
|
|
|
|
& .step-container > div {
|
|
float: left;
|
|
text-align: center;
|
|
}
|
|
|
|
& .icon-container {
|
|
width: 37px;
|
|
border-radius: 0px;
|
|
padding-left: var(--base-width);
|
|
}
|
|
|
|
& .step-container .fa {
|
|
font-size: 2em;
|
|
line-height: 41px;
|
|
color: #fff;
|
|
}
|
|
|
|
& .action-steps {
|
|
font-size: 14px;
|
|
font-weight: var(--font-weight-bold);
|
|
|
|
& .message {
|
|
color: white;
|
|
padding-left: 8px;
|
|
}
|
|
|
|
& .complete {
|
|
color: var(--green);
|
|
background-color: var(--green);
|
|
}
|
|
& .incomplete {
|
|
color: #828282;
|
|
background-color: #828282;
|
|
}
|
|
}
|
|
}
|