Base page
This commit is contained in:
parent
36e854144d
commit
08088c76c9
10
config.toml
10
config.toml
@ -1,4 +1,14 @@
|
|||||||
baseURL = 'https://docs.pls5618.com'
|
baseURL = 'https://docs.pls5618.com'
|
||||||
languageCode = 'fr-ca'
|
languageCode = 'fr-ca'
|
||||||
title = 'Documentation PLS'
|
title = 'Documentation PLS'
|
||||||
|
|
||||||
theme = 'learn'
|
theme = 'learn'
|
||||||
|
|
||||||
|
[outputs]
|
||||||
|
home = [ "HTML", "RSS", "JSON"]
|
||||||
|
|
||||||
|
|
||||||
|
[params]
|
||||||
|
themeVariant = "mine"
|
||||||
|
disableLandingPageButton = true
|
||||||
|
disableNextPrev = true
|
||||||
|
9
content/_index.md
Normal file
9
content/_index.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
title: "Documentation PLS"
|
||||||
|
---
|
||||||
|
|
||||||
|
# Bienvenue
|
||||||
|
|
||||||
|
Vous trouverez ici du contenu concernant la programmation d'un robot FRC.
|
||||||
|
|
||||||
|
{{% children depth="999" description="true" %}}
|
7
content/basics/_index.md
Normal file
7
content/basics/_index.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: "Java"
|
||||||
|
chapter: true
|
||||||
|
pre: "<b>1. </b>"
|
||||||
|
weight: 1
|
||||||
|
description: "Les bases de la programmation en Java"
|
||||||
|
---
|
4
content/basics/first-content.md
Normal file
4
content/basics/first-content.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
title: "First Content"
|
||||||
|
description: "test"
|
||||||
|
---
|
103
static/css/theme-mine.css
Normal file
103
static/css/theme-mine.css
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
|
||||||
|
:root{
|
||||||
|
|
||||||
|
--MAIN-TEXT-color:#323232; /* Color of text by default */
|
||||||
|
--MAIN-TITLES-TEXT-color: #5e5e5e; /* Color of titles h2-h3-h4-h5 */
|
||||||
|
--MAIN-LINK-color:#2c99d4; /* Color of links */
|
||||||
|
--MAIN-LINK-HOVER-color:#167ad0; /* Color of hovered links */
|
||||||
|
--MAIN-ANCHOR-color: #2c99d4; /* color of anchors on titles */
|
||||||
|
|
||||||
|
--MENU-HEADER-BG-color:#2c99d4; /* Background color of menu header */
|
||||||
|
--MENU-HEADER-BORDER-color:#33a1ff; /*Color of menu header border */
|
||||||
|
|
||||||
|
--MENU-SEARCH-BG-color:#167ad0; /* Search field background color (by default borders + icons) */
|
||||||
|
--MENU-SEARCH-BOX-color: #33a1ff; /* Override search field border color */
|
||||||
|
--MENU-SEARCH-BOX-ICONS-color: #a1d2fd; /* Override search field icons color */
|
||||||
|
|
||||||
|
--MENU-SECTIONS-ACTIVE-BG-color: hsl(218, 56%, 8%); /* Background color of the active section and its childs */
|
||||||
|
--MENU-SECTIONS-BG-color:#0d192e; /* Background color of other sections */
|
||||||
|
--MENU-SECTIONS-LINK-color: #ccc; /* Color of links in menu */
|
||||||
|
--MENU-SECTIONS-LINK-HOVER-color: #e6e6e6; /* Color of links in menu, when hovered */
|
||||||
|
--MENU-SECTION-ACTIVE-CATEGORY-color: #777; /* Color of active category text */
|
||||||
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: #fff; /* Color of background for the active category (only) */
|
||||||
|
|
||||||
|
--MENU-VISITED-color: #33a1ff; /* Color of 'page visited' icons in menu */
|
||||||
|
--MENU-SECTION-HR-color: hsl(218, 57%, 8%); /* Color of <hr> separator in menu */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
color: var(--MAIN-TEXT-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
|
||||||
|
border-color: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2, h3, h4, h5 {
|
||||||
|
color: var(--MAIN-TITLES-TEXT-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--MAIN-LINK-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.anchor {
|
||||||
|
color: var(--MAIN-ANCHOR-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: var(--MAIN-LINK-HOVER-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar ul li.visited > a .read-icon {
|
||||||
|
color: var(--MENU-VISITED-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
#body a.highlight:after {
|
||||||
|
display: block;
|
||||||
|
content: "";
|
||||||
|
height: 1px;
|
||||||
|
width: 0%;
|
||||||
|
-webkit-transition: width 0.5s ease;
|
||||||
|
-moz-transition: width 0.5s ease;
|
||||||
|
-ms-transition: width 0.5s ease;
|
||||||
|
transition: width 0.5s ease;
|
||||||
|
background-color: var(--MAIN-LINK-HOVER-color);
|
||||||
|
}
|
||||||
|
#sidebar {
|
||||||
|
background-color: var(--MENU-SECTIONS-BG-color);
|
||||||
|
}
|
||||||
|
#sidebar #header-wrapper {
|
||||||
|
background: var(--MENU-HEADER-BG-color);
|
||||||
|
color: var(--MENU-SEARCH-BOX-color);
|
||||||
|
border-color: var(--MENU-HEADER-BORDER-color);
|
||||||
|
}
|
||||||
|
#sidebar .searchbox {
|
||||||
|
border-color: var(--MENU-SEARCH-BOX-color);
|
||||||
|
background: var(--MENU-SEARCH-BG-color);
|
||||||
|
}
|
||||||
|
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
|
||||||
|
background: var(--MENU-SECTIONS-ACTIVE-BG-color);
|
||||||
|
}
|
||||||
|
#sidebar .searchbox * {
|
||||||
|
color: var(--MENU-SEARCH-BOX-ICONS-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar a {
|
||||||
|
color: var(--MENU-SECTIONS-LINK-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar a:hover {
|
||||||
|
color: var(--MENU-SECTIONS-LINK-HOVER-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar ul li.active > a {
|
||||||
|
background: var(--MENU-SECTION-ACTIVE-CATEGORY-BG-color);
|
||||||
|
color: var(--MENU-SECTION-ACTIVE-CATEGORY-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar hr {
|
||||||
|
border-color: var(--MENU-SECTION-HR-color);
|
||||||
|
}
|
BIN
static/images/favicon.png
Normal file
BIN
static/images/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
@ -1 +1 @@
|
|||||||
Subproject commit e817f53d690d35f181c896e0e320cb40f797e88c
|
Subproject commit 57ba5c2ee60619549f9293bd0d75e4b4faada2d5
|
Loading…
x
Reference in New Issue
Block a user