Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion site/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
/.luarc.json

# Environment
site/.env
site/.env
**/*.quarto_ipynb
23 changes: 13 additions & 10 deletions site/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,25 @@ website:
right:
- text: "{{< fa book-open >}} Documentation"
menu:
- text: "{{< fa circle-info >}} About {{< var vm.product >}}"
- text: "About {{< var vm.product >}}"
file: about/overview.qmd
- text: "{{< fa rocket >}} Get Started"
- text: "Get Started"
file: get-started/get-started.qmd
- text: "{{< fa book >}} Guides"
- text: "Guides"
file: guide/guides.qmd
- text: "{{< fa envelope-open-text >}} Support"
- text: "Support"
file: support/support.qmd
- text: "{{< fa bullhorn >}} Releases"
- text: "Releases"
file: releases/all-releases.qmd
- text: "---"
- text: "{{< fa cube >}} Python Library"
- text: "{{< fa code >}} {{< var validmind.developer >}}"
- text: "{{< var validmind.developer >}}"
file: developer/validmind-library.qmd
- text: "Python API"
file: validmind/validmind.qmd
- text: "Public REST API"
file: reference/validmind-rest-api-vm.qmd
- text: "---"
- text: "{{< fa graduation-cap >}} {{< var validmind.training >}}"
- text: "{{< fa building-columns >}} Training Courses"
- text: "Training Courses"
file: training/training.qmd

# The log in menu is defined in _quarto-development.yml, _quarto-staging.yml, and _quarto-production.yml as not all environments have the same login options.
Expand Down Expand Up @@ -194,7 +196,8 @@ website:
<li><a href="/developer/validmind-library.qmd#for-model-development">For developers</a></li>
<li><a href="/developer/validmind-library.qmd#for-model-validation">For validators</a></li>
<li><a href="/developer/validmind-library.qmd#try-the-code-samples">Code samples</a></li>
<li><a href="/validmind/validmind.qmd">API Reference</a></li>
<li><a href="/validmind/validmind.qmd">Python API</a></li>
<li><a href="/reference/validmind-rest-api-vm.qmd">Public REST API</a></li>
</ul>
</div>
- text: |
Expand Down
18 changes: 12 additions & 6 deletions site/assets/styles/_links.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
/* Base link styles */
a {
color: #DE257E;
text-decoration: none;
}

a:hover {
text-decoration: underline 2px solid #083E44;
/* text-underline-offset: 6px; */
text-decoration: none !important;
}

/* Section-specific underline treatments */
div[id^="fn"] a:hover,
#connect-with-us a:hover,
#prerequisites a:hover,
#supported-model-types a:hover,
#supported-modeling-libraries-and-other-tools a:hover,
#submit-feedback a:hover,
#whats-next a:hover:not(.quarto-grid-link) {
text-decoration: underline 2px solid #083E44 !important;
}

/* Special link hover states */
Expand Down
3 changes: 2 additions & 1 deletion site/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ body {
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
border-radius: 5px;
border: 1px solid #222425;
padding-left: 10px;
padding-bottom: 10px !important;
}


.sidebar-navigation .sidebar-divider {
margin-top: 1rem;
}
Expand Down
4 changes: 3 additions & 1 deletion site/theme.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
/*-- scss:defaults --*/
// Base ValidMind colors
$body-color: #222425;
$link-color: $body-color;
$link-color: #DE257E;
$link-hover-color: #DE257E;


$navbar-fg: #2e3133;
$navbar-hl: #de257e;
Expand Down
11 changes: 11 additions & 0 deletions site/training/assets/training.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ a:hover {
text-decoration: underline 2px solid #042426;
}

/* Section-specific underline treatments */
div[id^="fn"] a:hover,
#connect-with-us a:hover,
#prerequisites a:hover,
#supported-model-types a:hover,
#supported-modeling-libraries-and-other-tools a:hover,
#submit-feedback a:hover,
#whats-next a:hover:not(.quarto-grid-link) {
text-decoration: underline 2px solid #083E44 !important;
}

.training-hero {
position: relative;
margin-top: -50px;
Expand Down
Loading