Skip to content

Commit

Permalink
change trasnlations and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kloeckner committed Mar 11, 2024
1 parent fe8fc64 commit fd267bb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
17 changes: 10 additions & 7 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
baseURL = 'https://m-kloeckner.github.io/'
languageCode = 'en-us'
#languageCode = 'en-us'
defaultContentLanguage = "en"
title = 'My New Hugo Site'
#title = 'My New Hugo Site'
theme = "hallo"
publishDir = "docs"

Expand All @@ -25,7 +25,10 @@ publishDir = "docs"
icon = "instagram"
title = "Instagram"
url = "https://www.instagram.com/mkloeckner"

[params.colors]
background = "#99acc9"
foreground = "#edf7ff"
hover = "#798291"

defaultContentLanguageInSubdir = true
[languages]
Expand All @@ -35,17 +38,17 @@ defaultContentLanguageInSubdir = true
languageCode = 'de-DE'
languageDirection = 'ltr'
languageName = 'Deutsch'
title = 'Projekt Dokumentation'
title = 'Home | Martin Klöckner'
weight = 1
[languages.de.params]
subtitle = 'Referenz, Tutorials und Erklärungen'
subtitle = 'IT Sicherheits-Experte, Blog'
[languages.en]
contentDir = 'content/en'
disabled = false
languageCode = 'en-US'
languageDirection = 'ltr'
languageName = 'English'
title = 'Project Documentation'
title = 'Home | Martin Klöckner'
weight = 2
[languages.en.params]
subtitle = 'Reference, Tutorials, and Explanations'
subtitle = 'Cyber Security Expert, Blog'
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
html,
body {
color: #fff;
color: #edf7ff;
margin: 1rem;
padding: 0; }

Expand All @@ -10,15 +10,15 @@ html {
overflow-y: auto; }

body {
background-color: #6fcdbd; }
background-color: #99acc9; }

a {
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
color: #fff; }
color: #edf7ff; }
a:hover {
color: #333; }
color: #798291; }

h1 {
font-size: 9rem; }
Expand All @@ -40,7 +40,7 @@ h3 {
img.portrait {
box-sizing: border-box;
border-radius: 50%;
border: 10px solid #fff;
border: 10px solid #edf7ff;
margin: 2em 3em;
width: 100%;
height: auto;
Expand Down

0 comments on commit fd267bb

Please sign in to comment.