Fix relative doc paths
This commit is contained in:
parent
d0a0a881a1
commit
31ea2af9a0
@ -14,8 +14,8 @@
|
||||
title: AtlantaFX
|
||||
description: >- # this means to ignore newlines until "baseurl:"
|
||||
Modern JavaFX CSS theme collection with additional controls.
|
||||
baseurl: "/" # the subpath of your site, e.g. /blog
|
||||
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
||||
baseurl: "/atlantafx" # the subpath of your site, e.g. /blog
|
||||
url: "mkpaz.github.io" # the base hostname & protocol for your site, e.g. http://example.com
|
||||
github_username: mkpaz
|
||||
|
||||
# Build settings
|
||||
|
@ -5,7 +5,7 @@ nav_order: 2
|
||||
|
||||
## Project structure
|
||||
|
||||
![Project structure](/assets/images/project-structure.png)
|
||||
![Project structure]({{ site.baseurl }}{% link /assets/images/project-structure.png %})
|
||||
|
||||
| Directory | Description |
|
||||
|--------------|-----------------------------------------|
|
||||
|
@ -17,8 +17,8 @@ The contrast requirements are:
|
||||
|
||||
You can check and modify color contrast directly in the Sampler app.
|
||||
|
||||
![Color Contrast](/assets/images/color-contrast.png)
|
||||
![Color Contrast]({{ site.baseurl }}{% link /assets/images/color-contrast.png %})
|
||||
|
||||
Click on any block to run contrast checker and get more detailed info.
|
||||
|
||||
![Contrast Checker](/assets/images/contrast-checker.png)
|
||||
![Contrast Checker]({{ site.baseurl }}{% link /assets/images/contrast-checker.png %})
|
||||
|
@ -4,6 +4,6 @@ has_children: true
|
||||
nav_order: 3
|
||||
---
|
||||
|
||||
AtlantaFX as well as uses standard JavaFX themes [looked-up colors](/colors/looked-up-colors), but unlike them, in AtlantaFX all color variables start with `-color-` prefix.
|
||||
AtlantaFX as well as uses standard JavaFX themes [looked-up colors]({{ site.baseurl }}{% link colors/looked-up-colors.md %}), but unlike them, in AtlantaFX all color variables start with `-color-` prefix.
|
||||
|
||||
There're [global variables](/colors/global-variables), that are defined at the Scene root level and individual control variables. The latter defined for each individual control. Check corresponding control reference for the info.
|
||||
There're [global variables]({{ site.baseurl }}{% link colors/global-variables.md %}), that are defined at the Scene root level and individual control variables. The latter defined for each individual control. Check corresponding control reference for the info.
|
||||
|
@ -7,7 +7,7 @@ AtlantaFX stylesheet is written in SASS. You don't have to learn it, though it's
|
||||
|
||||
To compile SASS to CSS, AtlantaFX uses the Dart SASS library and very handy [`sass-cli-maven-plugin`](https://github.com/HebiRobotics/sass-cli-maven-plugin) by **@ennerf**.
|
||||
|
||||
Note, that theme is not limited by colors. If you only want to change colors, all you need is to override default looked-up [color variables](/colors/global-variables). The easiest way is to utilize pseudo-class, so you can always return to the default color scheme.
|
||||
Note, that theme is not limited by colors. If you only want to change colors, all you need is to override default looked-up [color variables]({{ site.baseurl }}{% link colors/global-variables.md %}). The easiest way is to utilize pseudo-class, so you can always return to the default color scheme.
|
||||
|
||||
```css
|
||||
.root:custom-theme {
|
||||
|
Loading…
Reference in New Issue
Block a user