diff --git a/config/plugins/automagic-images.yaml b/config/plugins/automagic-images.yaml new file mode 100644 index 0000000..bc11441 --- /dev/null +++ b/config/plugins/automagic-images.yaml @@ -0,0 +1 @@ +enabled: false diff --git a/themes/natascha/css/custom.css b/themes/natascha/css/custom.css index 5133f1c..c5bafb7 100644 --- a/themes/natascha/css/custom.css +++ b/themes/natascha/css/custom.css @@ -10,19 +10,24 @@ font-display: swap; } +:root { + --color-brand: #0081c4; + --color-text: #293236; + --color-text-light: #909090; +} + .funky-font { font-family: 'Hobo Std', Helvetica, Verdana, Arial; } -.text-color-blue { color: #0081c4; } -.text-color-white { color: #ffffff; } -.text-color-dark-grey { color: #293236; } -.text-color-light-grey { color: #909090; } +.text-color-blue { color: var(--color-brand); } +.text-color-white { color: #ffffff; } +.text-color-dark-grey { color: var(--color-text); } +.text-color-light-grey { color: var(--color-text-light); } html, body { font-family: Helvetica, Verdana, Arial; - color: #293236; - font-weight: bold; + color: var(--color-text); min-height: 100%; } @@ -41,7 +46,7 @@ body { } #main-menu { - background-color: #0081c4; + background-color: var(--color-brand); padding-left: 8px; padding-right: 8px; } @@ -66,7 +71,7 @@ body { #main-menu a.active, #main-menu a:hover { - color: #293236; + color: var(--color-text); } #main-menu .navbar-toggler { @@ -88,7 +93,7 @@ body { } #main-menu .dropdown-menu { - background-color: #0081c4; + background-color: var(--color-brand); border-color: #fff; min-width: 0; } @@ -98,8 +103,8 @@ body { } #main-menu .dropdown-menu .dropdown-item:hover { - background-color: #0081c4; - color: #293236; + background-color: var(--color-brand); + color: var(--color-text); } img.social-icon { @@ -112,10 +117,10 @@ a:hover img.social-icon { } #main-outline { - border: 8px solid #0081c4; + border: 8px solid var(--color-brand); border-top: none; min-height: 50vh; - background-color: rgba(255, 255, 255, 0.6); + background-color: rgba(255, 255, 255, 0.88); margin-left: 0; margin-right: 0; } @@ -134,7 +139,7 @@ a:hover img.social-icon { .main-header { font-size: 1.8em; - color: #0081c4; + color: var(--color-brand); } @media (min-width: 768px) { @@ -151,7 +156,7 @@ a:hover img.social-icon { footer { text-align: center; - text-shadow: 1px 1px #293236; + text-shadow: 1px 1px var(--color-text); } .gallery-item { diff --git a/themes/natascha/templates/cv.html.twig b/themes/natascha/templates/cv.html.twig index 22ec858..702a4c0 100644 --- a/themes/natascha/templates/cv.html.twig +++ b/themes/natascha/templates/cv.html.twig @@ -11,6 +11,6 @@