Fixing navbar colors and editing settings
This commit is contained in:
parent
96dd226af5
commit
fc14338f5e
2 changed files with 76 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
||||||
@include transition();
|
@include transition();
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
color: get-light-color('heading-color');
|
color: get-light-color('text-color');
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
color: get-light-color('inverse-text-color');
|
color: get-light-color('muted-text-color');
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
74
hugo.yaml
74
hugo.yaml
|
@ -1,3 +1,6 @@
|
||||||
|
languageCode: en
|
||||||
|
title: "Sharwin's Portfolio"
|
||||||
|
|
||||||
module:
|
module:
|
||||||
hugoVersion:
|
hugoVersion:
|
||||||
min: "0.128.0"
|
min: "0.128.0"
|
||||||
|
@ -62,6 +65,77 @@ params:
|
||||||
tags:
|
tags:
|
||||||
enable: true
|
enable: true
|
||||||
on_card: true # enables tags in post cards
|
on_card: true # enables tags in post cards
|
||||||
|
|
||||||
|
# Enable this to use `embed-pdf` shortcode.
|
||||||
|
embedpdf:
|
||||||
|
enable: false
|
||||||
|
|
||||||
|
# Enable this to create flowcharts using shortcodes.
|
||||||
|
flowchart:
|
||||||
|
enable: false
|
||||||
|
services:
|
||||||
|
# Uncomment for `mermaid` shortcode.
|
||||||
|
mermaid:
|
||||||
|
# For config options, see: https://mermaid-js.github.io/mermaid/#/Setup?id=configuration
|
||||||
|
# theme: dark
|
||||||
|
|
||||||
|
# Enable this to create mathematic expressions using `$$` blocks
|
||||||
|
math:
|
||||||
|
enable: true
|
||||||
|
services:
|
||||||
|
# https://katex.org/docs/autorender.html#api for more configurations
|
||||||
|
katex:
|
||||||
|
delimiters:
|
||||||
|
- left: $$
|
||||||
|
right: $$
|
||||||
|
display: true
|
||||||
|
- left: \\[
|
||||||
|
right: \\]
|
||||||
|
display: true
|
||||||
|
- left: $
|
||||||
|
right: $
|
||||||
|
display: false
|
||||||
|
- left: \\(
|
||||||
|
right: \\)
|
||||||
|
display: false
|
||||||
|
|
||||||
|
# Enable to use custom syntax highlight
|
||||||
|
# Please note, Hugo comes with it's own html based syntax highlighter.
|
||||||
|
# Your code block will still be syntax highlighted by hugo.
|
||||||
|
# For more details: https://gohugo.io/content-management/syntax-highlighting/
|
||||||
|
# To disable Hugo's builtin syntax highlight,
|
||||||
|
# see: https://gohugo.io/getting-started/configuration-markup#highlight
|
||||||
|
# ```
|
||||||
|
# # config.yaml
|
||||||
|
# markup:
|
||||||
|
# # this disables hugo's syntax highlighting.
|
||||||
|
# codeFences: false
|
||||||
|
# ```
|
||||||
|
syntaxHighlight:
|
||||||
|
enable: true
|
||||||
|
services:
|
||||||
|
hljs:
|
||||||
|
# see: https://highlightjs.readthedocs.io/en/latest/api.html#configure
|
||||||
|
noHighlightRe: /^no-highlight$/i
|
||||||
|
|
||||||
|
# Enable to use `video-player` shortcode
|
||||||
|
videoPlayer:
|
||||||
|
enable: false
|
||||||
|
services:
|
||||||
|
# convert .js-player class into video player via https://plyr.io/
|
||||||
|
# Can play HTML5 Video, Audio, Youtube, Vimeo.
|
||||||
|
# For more info on setup: https://github.com/sampotts/plyr#quick-setup
|
||||||
|
plyr:
|
||||||
|
# options doc: https://github.com/sampotts/plyr#options
|
||||||
|
# fullscreen: true
|
||||||
|
|
||||||
|
# Enables copy code button
|
||||||
|
copyCodeButton:
|
||||||
|
enable: true
|
||||||
|
|
||||||
|
# Enable reading time support in post cards and in post pages
|
||||||
|
readingTime:
|
||||||
|
enable: true
|
||||||
|
|
||||||
# Enable Analytics
|
# Enable Analytics
|
||||||
# analytics:
|
# analytics:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue