Skip to content

Commit

Permalink
Migrate objectdefinitions
Browse files Browse the repository at this point in the history
Signed-off-by: nook24 <[email protected]>
  • Loading branch information
nook24 committed Dec 18, 2024
1 parent 9eecf04 commit ba77156
Show file tree
Hide file tree
Showing 5 changed files with 2,778 additions and 2,457 deletions.
3 changes: 2 additions & 1 deletion .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ export default defineConfig({
{ text: 'Configuration Overview', link: '/documentation/usersguide/config' },
{ text: 'Main configuration file options', link: '/documentation/usersguide/configmain' },
{ text: 'Object configuration overview', link: '/documentation/usersguide/configobject' },

{ text: 'Object definitions', link: '/documentation/usersguide/objectdefinitions' },


{ text: 'Naemon Logo', link: '/logo' }
]
Expand Down
10 changes: 9 additions & 1 deletion .vitepress/theme/naemon.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,22 @@

--vp-home-hero-image-background-image: linear-gradient(45deg, var(--vp-c-brand-2) 50%, var(--vp-c-brand-1) 50%);
--vp-home-hero-image-filter: blur(68px);

--red-light: #D73A49;
--red-dark: #F97583;

}

.bold {
font-weight: bold;
}

.text-red {
color: red;
color: var(--red-light);
}

.dark .text-red {
color: var(--red-dark);
}

/* Adds a background color to images to be better visible */
Expand Down
Loading

0 comments on commit ba77156

Please sign in to comment.