mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
105 lines
1.8 KiB
SCSS
105 lines
1.8 KiB
SCSS
.new-host {
|
|
&__section-wrap {
|
|
margin-bottom: $pad-base;
|
|
padding: $pad-base;
|
|
}
|
|
|
|
&__title {
|
|
border-bottom: 1px solid $accent-light;
|
|
font-size: $large;
|
|
width: 364px;
|
|
|
|
&--wide {
|
|
width: 626px;
|
|
}
|
|
}
|
|
|
|
&__input-wrap {
|
|
position: relative;
|
|
}
|
|
|
|
&__input {
|
|
color: #6f737f;
|
|
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;
|
|
font-family: SourceCodePro, Oxygen;
|
|
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;
|
|
font-size: $large;
|
|
color: $text-medium;
|
|
|
|
&--copied {
|
|
color: $brand-light;
|
|
}
|
|
}
|
|
|
|
&__tab-wrap {
|
|
margin-top: $pad-base;
|
|
}
|
|
|
|
&__tab-header {
|
|
background-color: $bg-light;
|
|
color: $text-medium;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
font-size: $small;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
padding-left: $pad-base;
|
|
width: 235px;
|
|
letter-spacing: 0;
|
|
|
|
&--selected {
|
|
background-color: $bg-medium;
|
|
color: $brand-light;
|
|
}
|
|
}
|
|
|
|
&__tab-body {
|
|
background-color: $bg-medium;
|
|
border-radius: 3px;
|
|
box-sizing: border-box;
|
|
color: $text-ultradark;
|
|
font-size: $small;
|
|
height: 196px;
|
|
padding-bottom: $pad-base;
|
|
padding-left: $pad-base;
|
|
padding-right: $pad-base;
|
|
padding-top: $pad-base;
|
|
width: 100%;
|
|
}
|
|
|
|
&__text {
|
|
color: $text-ultradark;
|
|
font-size: $small;
|
|
line-height: $large;
|
|
}
|
|
|
|
code {
|
|
color: $brand;
|
|
font-family: SourceCodePro, Oxygen;
|
|
}
|
|
}
|