2016-11-03 19:40:54 +00:00
|
|
|
.new-host {
|
|
|
|
&__section-wrap {
|
|
|
|
margin-bottom: $pad-base;
|
2016-12-09 22:30:32 +00:00
|
|
|
padding: 30px;
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2016-12-09 22:30:32 +00:00
|
|
|
font-weight: $light;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
color: $text-ultradark;
|
2016-11-03 19:40:54 +00:00
|
|
|
font-size: $large;
|
|
|
|
width: 364px;
|
2016-12-09 22:30:32 +00:00
|
|
|
margin: 0 0 32px;
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input-wrap {
|
|
|
|
position: relative;
|
2016-12-09 22:30:32 +00:00
|
|
|
margin: 0 0 23px;
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2016-12-09 22:30:32 +00:00
|
|
|
color: $text-ultradark;
|
2016-11-03 19:40:54 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
background-color: $white;
|
|
|
|
border: solid 1px $accent-dark;
|
|
|
|
box-shadow: inset 0 0 8px 0 rgba($black, 0.12);
|
|
|
|
box-sizing: border-box;
|
2016-12-01 18:57:19 +00:00
|
|
|
font-family: SourceCodePro, Oxygen;
|
2016-11-03 19:40:54 +00:00
|
|
|
font-size: $medium;
|
|
|
|
height: 60px;
|
|
|
|
letter-spacing: 1.2px;
|
|
|
|
opacity: 0.8;
|
|
|
|
padding-left: 28px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__clipboard-text {
|
|
|
|
color: $brand;
|
|
|
|
font-size: $xsmall;
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__clipboard-icon {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 18px;
|
2016-11-17 18:16:09 +00:00
|
|
|
font-size: $large;
|
|
|
|
color: $text-medium;
|
|
|
|
|
|
|
|
&--copied {
|
|
|
|
color: $brand-light;
|
|
|
|
}
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
2016-12-09 22:30:32 +00:00
|
|
|
&__text {
|
|
|
|
color: $text-ultradark;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 32px;
|
|
|
|
margin: 0 0 $large;
|
|
|
|
max-width: 860px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kolide-ol {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
2016-12-09 22:30:32 +00:00
|
|
|
&__view-script {
|
|
|
|
@include clearfix;
|
|
|
|
margin: 0;
|
2016-11-03 19:40:54 +00:00
|
|
|
|
2016-12-09 22:30:32 +00:00
|
|
|
.button {
|
|
|
|
float: right;
|
|
|
|
color: $link;
|
|
|
|
font-weight: $normal;
|
|
|
|
text-transform: none;
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-09 22:30:32 +00:00
|
|
|
&__more-methods {
|
|
|
|
@include display(flex);
|
|
|
|
@include justify-content(space-between);
|
|
|
|
@include align-content(center);
|
|
|
|
@include align-items(center);
|
|
|
|
margin: 0;
|
|
|
|
padding: 42px 0;
|
|
|
|
list-style: none;
|
2016-11-03 19:40:54 +00:00
|
|
|
border-radius: 3px;
|
2016-12-09 22:30:32 +00:00
|
|
|
background-color: $white;
|
|
|
|
box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 0.08);
|
|
|
|
border: solid 1px $accent-medium;
|
2016-11-03 19:40:54 +00:00
|
|
|
|
2016-12-09 22:30:32 +00:00
|
|
|
li {
|
|
|
|
&:first-child,
|
|
|
|
&:last-child {
|
|
|
|
@include flex-grow(1);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 130px;
|
|
|
|
}
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
color: $brand;
|
2016-12-01 18:57:19 +00:00
|
|
|
font-family: SourceCodePro, Oxygen;
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
}
|