7.0 KiB
date | title | weight |
---|---|---|
2016-04-09T16:50:16+02:00 | Personnalisation du style | 25 |
Hugo-theme-learn a été conçu pour être aussi configurable que possible en définissant plusieurs partials
Dans themes/hugo-theme-learn/layouts/partials/
, vous pourrez trouver tous les partials définis pour ce thème. Si vous avez besoin d'écraser quelque chose, ne modifiez pas le code directement. A la place, suivez cette page. Vous créerez alors un nouveau partial dans le dossier layouts/partials
de votre site local. Ce partial aura la priorité.
Ce thème définit les partials suivant :
- header: l'en-tête de la page page (contient le fil d'Ariane). Pas voué à être écrasé
- custom-header: En-tête personnalisé. Voué à être écrasé quand vous ajoutez des imports CSS. N'oubliez pas d'inclure la balise HTML
style
dans votre fichier - footer: le pied-de-page de la page (contains les flèches). Pas voué à être écrasé
- custom-footer: Pied-de-page personnalisé. Voué à être écrasé quand vous ajoutez du Javascript. N'oubliez pas d'inclure la balise HTML
javascript
dans votre fichier - favicon: le favicon
- logo: le logo, affiché un haut à gauche.
- meta: les balises HTML meta, que vous pouvez écraser sans problème.
- menu: Le menu à gauche. Pas voué à être écrasé
- menu-footer: Le pied-de-page du menu
- search: le champ de recherche
- toc: le sommaire
Changer le logo
Créez un nouveau fichier dans layouts/partials/
, nommé logo.html
. Puis, écrivez le code HTML voulu.
Vous pourriez utiliser une balise HTML img
et référencer une image créée dans le dossier static, voire même y coller un code SVG !
{{% notice note %}} La taille du logo va s'adapter automatiquement {{% /notice %}}
Changer le favicon
Si votre favicon est un png, déposez votre image dans votre dossier local static/images/
et nommez le favicon.png
Si vous avez besoin de changer ce comportement par défaut, créer un nouveau fichier dans layouts/partials/
et nommez le favicon.html
. Puis ajoutez quelque chose comme:
<link rel="shortcut icon" href="/images/favicon.png" type="image/x-icon" />
Changer les couleurs par défaut
Hugo Learn theme vous permet de choisir nativement entre 3 schéma de couleurs, mais n'hésitez pas à en ajouter d'autres ! Les couleurs par défaut sont celles de Grav Learn Theme.
Variante rouge
[params]
# Modifier le schéma de couleur par défaut. Peut être "red", "blue", "green".
themeVariant = "red"
Variante bleue
[params]
# Modifier le schéma de couleur par défaut. Peut être "red", "blue", "green".
themeVariant = "blue"
Variante verte
[params]
# Modifier le schéma de couleur par défaut. Peut être "red", "blue", "green".
themeVariant = "green"
Votre variante
Premièrement, créez un nouveau fichier CSS dans votre dossier static/css
, préfixé par theme
(ex: avec le theme_lemien_ static/css/theme-lemien.css
). Copiez le contenu suivant et modifiez les couleurs dans les variables CSS.
: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:#1C90F3; /* Color of links */
--MAIN-LINK-HOVER-color:#167ad0; /* Color of hovered links */
--MAIN-ANCHOR-color: #1C90F3; /* color of anchors on titles */
--MENU-HEADER-BG-color:#1C90F3; /* 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:#20272b; /* Background color of the active section and its childs */
--MENU-SECTIONS-BG-color:#252c31; /* 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: #20272b; /* 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);
}
Puis, configurez le paramètre themeVariant
avec le nom de votre variante. C'est tout !
[params]
# Modifier le schéma de couleur par défaut. Peut être "red", "blue", "green".
themeVariant = "lemien"