forked from spinnaker/spinnaker.io
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Footer adjustments for content and layout
- Loading branch information
1 parent
0a5ab1b
commit 362e73e
Showing
8 changed files
with
154 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Displayed on the content page | ||
linkTitle: displayed where a link to the page appears (in the docs menu) | ||
weight: Determines the order of appearance in lists of content in the same directory, lowest first. To let all titles appear in alphabetical order, remove all weights. | ||
description: > | ||
Short description, appears in lists of directory contents and on content page. | ||
mermaid: Boolean `true` indicates that MermaidJS should be loaded on the page. | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.row { | ||
&.row-divider { | ||
hr { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
// width: 90%; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,64 @@ | ||
@import "support/functions"; | ||
@import "variables_project"; | ||
@import "variables"; | ||
@import "support/mixins"; | ||
|
||
@import "../vendor/bootstrap/scss/bootstrap"; | ||
|
||
@import "../vendor/Font-Awesome/scss/fontawesome.scss"; | ||
@import "../vendor/Font-Awesome/scss/solid.scss"; | ||
@import "../vendor/Font-Awesome/scss/brands.scss"; | ||
|
||
@import "support/utilities"; | ||
@import "colors"; | ||
@import "boxes"; | ||
@import "blog"; | ||
@import "code"; | ||
@import "nav"; | ||
@import "sidebar-tree"; | ||
@import "sidebar-toc"; | ||
@import "buttons"; | ||
@import "breadcrumb"; | ||
@import "alerts"; | ||
@import "content"; | ||
@import "search"; | ||
@import "main-container"; | ||
@import "blocks/blocks"; | ||
@import "section-index"; | ||
@import "pageinfo"; | ||
@import 'support/functions'; | ||
@import 'variables_project'; | ||
@import 'variables'; | ||
@import 'support/mixins'; | ||
|
||
@import '../vendor/bootstrap/scss/bootstrap'; | ||
|
||
@import '../vendor/Font-Awesome/scss/fontawesome.scss'; | ||
@import '../vendor/Font-Awesome/scss/solid.scss'; | ||
@import '../vendor/Font-Awesome/scss/brands.scss'; | ||
|
||
@import 'support/utilities'; | ||
@import 'colors'; | ||
@import 'boxes'; | ||
@import 'blog'; | ||
@import 'code'; | ||
@import 'nav'; | ||
@import 'sidebar-tree'; | ||
@import 'sidebar-toc'; | ||
@import 'buttons'; | ||
@import 'breadcrumb'; | ||
@import 'alerts'; | ||
@import 'content'; | ||
@import 'search'; | ||
@import 'main-container'; | ||
@import 'blocks/blocks'; | ||
@import 'section-index'; | ||
@import 'pageinfo'; | ||
@import 'footer'; | ||
|
||
@if $td-enable-google-fonts { | ||
@import url($web-font-path); | ||
@import url($web-font-path); | ||
} | ||
|
||
footer { | ||
min-height: 150px; | ||
min-height: 150px; | ||
|
||
@include media-breakpoint-down(md) { | ||
min-height: 200px; | ||
} | ||
@include media-breakpoint-down(md) { | ||
min-height: 200px; | ||
} | ||
} | ||
|
||
// Adjust anchors vs the fixed menu. | ||
@include media-breakpoint-up(md) { | ||
.td-offset-anchor:target { | ||
display: block; | ||
position: relative; | ||
top: -4rem; | ||
visibility: hidden; | ||
} | ||
|
||
h2[id]:before, h3[id]:before, h4[id]:before, h5[id]:before { | ||
display: block; | ||
content: " "; | ||
margin-top: -5rem; | ||
height: 5rem; | ||
visibility: hidden; | ||
} | ||
.td-offset-anchor:target { | ||
display: block; | ||
position: relative; | ||
top: -4rem; | ||
visibility: hidden; | ||
} | ||
|
||
h2[id]:before, | ||
h3[id]:before, | ||
h4[id]:before, | ||
h5[id]:before { | ||
display: block; | ||
content: ' '; | ||
margin-top: -5rem; | ||
height: 5rem; | ||
visibility: hidden; | ||
} | ||
} | ||
|
||
@import "styles_project"; | ||
@import 'styles_project'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters