chore: set default background and primary color, add logos

This commit is contained in:
transcaffeine 2022-11-25 17:56:15 +01:00
parent e522d75730
commit c6b069e882
Signed by: transcaffeine
GPG Key ID: 03624C433676E465
3 changed files with 11 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 627 B

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1,3 +1,9 @@
:root {
--pf-global--primary-color--100: #ea5b0c;
--default-background-color: #ea5b0c;
--link-hover-color: #ea5b0c;
}
/* Patternfly CSS places a "bg-login.jpg" as the background on this ".login-pf" class.
This clashes with the "keycloak-bg.png' background defined on the body below.
Therefore the Patternfly background must be set to none. */
@ -6,8 +12,7 @@
}
.login-pf body {
background: url("../img/keycloak-bg.png") no-repeat center center fixed;
background-size: cover;
background: --default-background-color;
height: 100%;
}
@ -28,6 +33,10 @@ p.instruction {
border-color: rgba(230, 230, 230, 0.5);
}
.pf-c-button.pf-m-primary {
background: --default-background-color;
}
h1#kc-page-title {
margin-top: 10px;
}