Skip to content

Commit e1f1c9e

Browse files
committed
fix: update more styleS
1 parent 457be6c commit e1f1c9e

File tree

1 file changed

+48
-19
lines changed

1 file changed

+48
-19
lines changed

docs_theme/src/scss/styles.scss

Lines changed: 48 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
// Bootstrap Variables
22

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
59
$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;
2317

2418
// Configuration
2519
@import "../../node_modules/bootstrap/scss/functions";
@@ -69,7 +63,42 @@ $dropdown-color: #a30000;
6963
@import "../../node_modules/bootstrap/scss/utilities/api";
7064

7165
// 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+
7289
.body-content {
7390
padding-top: 120px;
7491
padding-bottom: 70px;
7592
}
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

Comments
 (0)