diff --git a/lumbung.space/login/login.ftl b/lumbung.space/login/login.ftl index 468fc4a..9fdafa1 100755 --- a/lumbung.space/login/login.ftl +++ b/lumbung.space/login/login.ftl @@ -1,7 +1,27 @@ <#import "template.ftl" as layout> <@layout.registrationLayout displayMessage=!messagesPerField.existsError('username','password') displayInfo=realm.password && realm.registrationAllowed && !registrationDisabled??; section> <#if section = "header"> - ${msg("loginAccountTitle")} +
+ +
${msg("loginAccountTitle")}
+
<#elseif section = "form">
diff --git a/lumbung.space/login/resources/css/login.css b/lumbung.space/login/resources/css/login.css index e09de56..649c662 100644 --- a/lumbung.space/login/resources/css/login.css +++ b/lumbung.space/login/resources/css/login.css @@ -1,9 +1,29 @@ -body { - - font-size:1.3em; - font-family: sans-serif; - +@font-face { + font-family: Gudea; + font-style: normal; + font-weight: 400; + src: url(../fonts/gudea.woff2) format("woff2"); } + +@font-face { + font-family: Gudea; + font-style: italic; + font-weight: 400; + src: url(../fonts/gudea-italic.woff2) format("woff2"); +} + +@font-face { + font-family: Gudea; + font-style: bold; + font-weight: 700; + src: url(../fonts/gudea-bold.woff2) format("woff2"); +} + +body { + font-size:1.3em; + font-family: Gudea sans-serif; +} + a { color: #1B4C8A; } @@ -28,13 +48,25 @@ a { } +.header-container { + display: flex; + flex-direction: column; + margin-top: -3em; +} + +.logo { + background-color: white; + border: 1px solid black; + margin-left: 5.5em; + transform: rotate(5deg); +} + #kc-page-title { - margin: 0; + margin-left: 0.75em; font-size: 1em; display: inline-block; height: 100%; - vertical-align: bottom; - padding: 2em 0em 1em 1em; + font-weight: normal; } #kc-form-wrapper { diff --git a/lumbung.space/login/resources/fonts/gudea-bold.woff2 b/lumbung.space/login/resources/fonts/gudea-bold.woff2 new file mode 100644 index 0000000..e27401b Binary files /dev/null and b/lumbung.space/login/resources/fonts/gudea-bold.woff2 differ diff --git a/lumbung.space/login/resources/fonts/gudea-italic.woff2 b/lumbung.space/login/resources/fonts/gudea-italic.woff2 new file mode 100644 index 0000000..ed7ac6b Binary files /dev/null and b/lumbung.space/login/resources/fonts/gudea-italic.woff2 differ diff --git a/lumbung.space/login/resources/fonts/gudea.woff2 b/lumbung.space/login/resources/fonts/gudea.woff2 new file mode 100644 index 0000000..90d5f2a Binary files /dev/null and b/lumbung.space/login/resources/fonts/gudea.woff2 differ