|
1 | 1 | // Bootstrap Variables
|
2 | 2 |
|
3 |
| -// Navbar |
4 |
| -// $navbar-brand-font-size: $font-size-lg !default; |
| 3 | +// General Styles |
| 4 | +$font-family-base: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 5 | +$font-size-base: 1rem * 0.875; |
| 6 | +$color-contrast-dark: #333; |
| 7 | + |
| 8 | +// Navbar Styles |
5 | 9 | $navbar-padding-y: 0;
|
6 |
| -// $nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default; |
7 |
| -// $navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .65) !default; |
8 |
| -// $navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default; |
9 |
| -// $navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default; |
10 |
| -// $navbar-dark-color: rgba($white, .55) !default; |
11 |
| -// $navbar-dark-hover-color: rgba($white, .75) !default; |
12 |
| -// $navbar-dark-active-color: $white !default; |
13 |
| - |
14 |
| -// Dropdowns |
15 |
| -// $dropdown-padding-x: 0 !default; |
16 |
| -// $dropdown-padding-y: .5rem !default; |
17 |
| -// $dropdown-spacer: .125rem !default; |
18 |
| -// $dropdown-link-color: var(--#{$prefix}body-color) !default; |
19 |
| -// $dropdown-link-hover-color: $dropdown-link-color !default; |
20 |
| -// $dropdown-link-hover-bg: var(--#{$prefix}tertiary-bg) !default; |
21 |
| -$dropdown-font-size: 0.9rem; |
22 |
| -$dropdown-color: #a30000; |
| 10 | +$navbar-nav-link-padding-x: 1rem; |
| 11 | + |
| 12 | +$dropdown-link-color: #a30000; |
| 13 | +$nav-link-color: #a30000; |
| 14 | +$nav-link-hover-color: #a30000; |
| 15 | + |
| 16 | +$code-color: #d14; |
23 | 17 |
|
24 | 18 | // Configuration
|
25 | 19 | @import "../../node_modules/bootstrap/scss/functions";
|
@@ -69,7 +63,42 @@ $dropdown-color: #a30000;
|
69 | 63 | @import "../../node_modules/bootstrap/scss/utilities/api";
|
70 | 64 |
|
71 | 65 | // Custom Classes
|
| 66 | +a { |
| 67 | + color: #a30000; |
| 68 | + text-decoration: none; |
| 69 | +} |
| 70 | + |
| 71 | +pre.prettyprint { |
| 72 | + margin-bottom: 20px; |
| 73 | +} |
| 74 | + |
| 75 | +body hr { |
| 76 | + border-top: 1px dotted #a30000; |
| 77 | +} |
| 78 | + |
| 79 | +.navbar { |
| 80 | + border-top: 5px solid #a30000; |
| 81 | +} |
| 82 | + |
| 83 | +code { |
| 84 | + background-color: #f7f7f9; |
| 85 | + border: 1px solid #e1e1e8; |
| 86 | + padding: 2px 4px; |
| 87 | +} |
| 88 | + |
72 | 89 | .body-content {
|
73 | 90 | padding-top: 120px;
|
74 | 91 | padding-bottom: 70px;
|
75 | 92 | }
|
| 93 | + |
| 94 | +.badges { |
| 95 | + display: flex; |
| 96 | + align-items: center; |
| 97 | + justify-content: end; |
| 98 | +} |
| 99 | + |
| 100 | +.toclink { |
| 101 | + color: #333; |
| 102 | +} |
| 103 | + |
| 104 | +// Code Blocks |
0 commit comments