fleet/frontend/styles/global/_styles.scss
2016-11-15 12:52:17 -06:00

66 lines
1.1 KiB
SCSS

.kolide-ol {
margin-left: 0;
padding-left: 0;
list-style-type: none;
li {
counter-increment: step-counter;
&::before {
content: counter(step-counter) ')';
display: inline-block;
margin-right: 10px;
text-align: left;
width: 10px;
}
}
}
.container-triangle {
&::before,
&::after {
border-radius: 3px;
content: '';
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
z-index: 1;
}
&.left {
&::after {
border-color: transparent $white transparent transparent;
border-width: 15px;
right: 99%;
top: 23px;
}
&::before {
border-color: transparent $text-medium transparent transparent;
border-width: 16px;
right: 99%;
top: 22px;
z-index: -1;
}
}
&.right {
&::after {
border-color: transparent transparent transparent $white;
border-width: 15px;
left: 99%;
top: 23px;
}
&::before {
border-color: transparent transparent transparent $text-medium;
border-width: 16px;
left: 99%;
top: 22px;
z-index: -1;
}
}
}