Skip to content

Commit fa94983

Browse files
add hover color for navbar items
1 parent f35d35c commit fa94983

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

_includes/citation/cite.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!-- TODO: Add a better citations (maybe publication system) to list research work of all Turing ecosystem packages ) -->
2+
13
```{=html}
24
<div class="citation-container">
35
<h3 id="cite" class="pb-1 text-center">Turing.jl is an <a href="https://github.com/TuringLang/Turing.jl/blob/main/LICENCE" class="turing-license-link"><code>MIT</code></a> Licensed Open Source Project</h3>

theming/rules/_layouts.scss

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,22 @@
8282
.navbar {
8383
background-color: $navbar-bg;
8484

85-
.nav-link {
85+
.nav-link,
86+
.navbar-title,
87+
.quarto-navigation-tool {
8688
color: $navbar-color !important;
89+
transition: color 0.2s ease;
90+
91+
&:hover {
92+
color: $links-hover !important;
93+
}
8794
}
8895

8996
a:hover {
9097
text-decoration: none;
9198
}
9299
}
93100

94-
.navbar-title {
95-
color: $navbar-color !important;
96-
}
97-
98101
.section-header {
99102
display: flex;
100103
justify-content: space-between;

0 commit comments

Comments
 (0)