-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add and update content to deploy site: (#26)
- Add logo - Add SCSS variables and CSS rules - Convert vignette title from yaml to h1 in order to circumvent an issue in adodownr
- Loading branch information
1 parent
423de12
commit 39c6a11
Showing
6 changed files
with
31 additions
and
9 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,24 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// nav bar | ||
$navbar-bg: #483955; | ||
$navbar-fg: white; | ||
// body | ||
$body-bg: white; | ||
// font color | ||
// $link-color: #a6e3a1; | ||
|
||
/*-- scss:rules --*/ | ||
|
||
// set package title's background color to the page's | ||
h1 > code { | ||
background-color: $body-bg; | ||
} | ||
|
||
// use Stata IDE colors | ||
// exclude README's Stata blocks for readability | ||
pre > code:not(.stata) , p > code { | ||
background-color: #252526 !important; | ||
// results | ||
color: #b4ffb4; | ||
} |
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