From dc102d24f0fcb6247388880abc7f3208d0b7a9eb Mon Sep 17 00:00:00 2001 From: Jannik Schönartz Date: Sun, 10 Mar 2019 03:50:32 +0000 Subject: [documentation] Add documentation site Override css (Design the topbar & site) <-- A lot of Udo's help Create structure for the differen pages Start writing the installation Write the getting started API site Write documentation of the authentication api Write documentation of the setup api --- documentation/.vuepress/override.styl | 94 +++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 documentation/.vuepress/override.styl (limited to 'documentation/.vuepress/override.styl') diff --git a/documentation/.vuepress/override.styl b/documentation/.vuepress/override.styl new file mode 100644 index 0000000..8090c85 --- /dev/null +++ b/documentation/.vuepress/override.styl @@ -0,0 +1,94 @@ +// showing default values +$accentColor = #0095ff +$textColor = #2c3e50 +$borderColor = #eaecef +$codeBgColor = #282c34 +//$codeBgColor = #4f5665 + +// Custom variables +$bgColorNav = #fff +$textColorNav = #000 + +$bgColor = #fafafa +$fgColor = #fff +$color = #000 +$border = #0000001f + +darknav = false +if darknav + $bgColorNav = #212121 + $textColorNav = #fff + $bgSearch = #424242 + $borderSearch = #303030 + $bordersizeSearch = 2px + $borderNav = none + +darktheme = false +if darktheme + $bgColorNav = #212121 + $textColorNav = #fff + $bgColor = #303030 + $fgColor = #424242 + $color = #fff + $border = #ffffff1f + $bgSearch = #424242 + $borderSearch = #303030 + $bordersizeSearch = 2px + $borderNav = none + +body + background-color $bgColor +blockquote + font-size 1rem !important + color dimgrey !important + +.theme-container + .navbar + background-color $bgColorNav + border-bottom $borderNav + padding-top 0 + + .home-link + overflow hidden + height: 57px + + .logo + width 341.141px + max-width calc(100% - 30px) + height auto + transform translateY(-40%) + z-index 2 + + .site-name + margin-top 11.2px + color $textColorNav + @media (max-width: 1140px) + .site-name + display none + + .links + background-color transparent + color $textColorNav + + :hover + color $textColorNav + + .router-link-active + color $textColorNav + + .search-box input + background-color $bgSearch + border $bordersizeSearch solid $borderSearch + z-index 1 + + .search-box .focused + z-index 3 + + .page + background-color $bgColor + color $color + + .sidebar + background-color $fgColor + color $color + border-right $border solid 1px -- cgit v1.2.3-55-g7522