-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add the las_updated information on all pages (#395)
- Loading branch information
Showing
3 changed files
with
34 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,48 @@ | ||
/* add dollar sign in console code-block */ | ||
/******************************************************************************* | ||
* add dollar sign in console code-block | ||
*/ | ||
div.highlight-console pre span.go::before { | ||
content: "$"; | ||
margin-right: 10px; | ||
margin-left: 5px; | ||
} | ||
|
||
/* Create a custom api admonition */ | ||
/******************************************************************************* | ||
* Create a custom api admonition | ||
*/ | ||
div.admonition.admonition-api > .admonition-title::after { | ||
content: "\f121"; /* the fa-code icon */ | ||
} | ||
|
||
/* increase width of the main content */ | ||
/******************************************************************************* | ||
* custom sizing | ||
*/ | ||
.bd-main .bd-content .bd-article-container { | ||
max-width: 100%; /* default is 60em */ | ||
} | ||
|
||
/* increase width of the page */ | ||
.bd-page-width { | ||
max-width: 110rem; /* default is 88rem */ | ||
} | ||
|
||
/******************************************************************************* | ||
* custom article footer rendering | ||
*/ | ||
footer.bd-footer-article { | ||
background-color: transparent; | ||
border-top: 1px solid var(--pst-color-border); | ||
margin-top: 2em; | ||
} | ||
|
||
.bd-footer-article .footer-article-items { | ||
flex-direction: row; | ||
} | ||
|
||
.bd-footer-article .footer-article-items .footer-article-item { | ||
flex-grow: 1; | ||
} | ||
|
||
.bd-footer-article .last-updated { | ||
color: var(--pst-color-text-muted); | ||
text-align: right; | ||
} |
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