mirror of
https://github.com/spf13/cobra
synced 2025-04-30 18:37:19 +00:00
43 lines
1.1 KiB
SCSS
43 lines
1.1 KiB
SCSS
|
// Copyright 2013-2023 The Cobra Authors
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
// BACKGROUND COLORS
|
||
|
|
||
|
$nav-bg:#254E70 !default;
|
||
|
$examples-bg: #002642 !default;
|
||
|
|
||
|
// FONTS
|
||
|
|
||
|
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap");
|
||
|
|
||
|
$font-default-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||
|
|
||
|
// FLEX SIDEBAR
|
||
|
|
||
|
.toc-wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
#toc {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.toc-wrapper .toc-footer {
|
||
|
margin-top: .5em;
|
||
|
li {
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|