Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/austincunningham/raincatcher-keycloak-theme
:iphone: Create a custom theme for Keycloak Login screen to work with a mobile application
https://github.com/austincunningham/raincatcher-keycloak-theme
css keycloak mobile stylesheets
Last synced: about 15 hours ago
JSON representation
:iphone: Create a custom theme for Keycloak Login screen to work with a mobile application
- Host: GitHub
- URL: https://github.com/austincunningham/raincatcher-keycloak-theme
- Owner: austincunningham
- Created: 2017-05-29T11:37:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T14:48:20.000Z (over 4 years ago)
- Last Synced: 2024-04-13T16:18:18.355Z (9 months ago)
- Topics: css, keycloak, mobile, stylesheets
- Language: CSS
- Homepage: https://austincunningham.ddns.net/2017/themekeycloak
- Size: 341 KB
- Stars: 60
- Watchers: 2
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: readme.adoc
Awesome Lists containing this project
README
[[theme-for-raincatcher-for-keycloak]]
= Theme for Raincatcher for Keycloakimage:https://cdn-images-1.medium.com/max/800/0*lMzC1bK4bQulI6GB.[raincatcher
theme][[usage]]
== UsageGit clone this repo in the Themes directory of your keycloak instance to use
this themeTo select the theme you need to login to your keycloak admin console. Go to
Realms and themes and select from dropdown.image:https://cdn-images-1.medium.com/max/1000/0*49oKObDvfQyfw5WH.[keycloak
themes 2017-05-30 12-08-02.png][[configure-your-own-theme]]
== Configure your own ThemeIt is recommend that you make a copy of an existing theme and edit it. In order
to be able to edit the theme and see changes without restarting the keycloak server
you need to edit the standalone.xml file on your keycloak server to disable caching.located here
....
./standalone/configuration/standalone.xml
....Make the following changes to standalone.
[source,xml]
-----1
false
false
...----
To change the title for your login and register user screen you can edit the CSS
located at....
./raincatcher-keycloak-theme/login/resources/css/styles.css
....Make changes here to change the title
[source,css]
----
/* Change content to change the title of the page*/
div#kc-header::after {
content: 'FeedHenry Work Force Management';
font-size: 40px;
line-height: 50px;
margin-bottom: 15px;
}/*title banner size and colour*/
div#kc-header {
width:100%;
background-color: rgb(40,53,147);
padding-top: 2.5em;
padding-bottom: 2.5em;
padding-right: 2em;
padding-left: 3em;
}
----To change your background colour or set a background image
[source,css]
----
body {
background-color: rgb(63,81,181);
/*background-image: url('../img/bkgrnd.jpg');*/
background-position: center center;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;color: #fff;
font-family: sans-serif;
text-shadow: 0px 0px 10px #000;
margin: 0px;
}
----To change the login and fields text
[source,css]
----
/* label change Username, Password text*/
div#kc-form label {
color: rgba(255, 255, 255, 0.7) !important;
display: block;
font-size: 30px;
}
----To change the fields look and feel
[source,css]
----
/*fields*/
input[type=text], input[type=password] {
color: #ddd;
font-size: 30px;
margin-bottom: 20px;
background: none;
border-width: 0 0 1px 0;
padding: 12px;
width: 95%;
}
----To change the login and register button
[source,css]
----
/*button*/
input[type=submit] {
border: none;
border-radius: 3px;
background-color: rgb(40,53,147);
box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
color: rgba(0,0,0,0.6);
font-size: 30px;
color: white;
text-transform: uppercase;
padding: 20px;
margin-top: 3em;
width: 98%;
}
----More information see Keycloak Themes documentation http://www.keycloak.org/docs/latest/server_development/index.html#_themes[here]
[[docker-demo-image]]
== Docker Demo ImagePull my image here
[source,bash]
----
# Keycloak image with this theme applied
docker pull austincunningham/keycloak-raincatcher-theme
# Run with
docker run -p 8080:8080 -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin austincunningham/keycloak-raincatcher-theme:tryme
----See this https://austincunningham.ddns.net/2020/changekeycloakdockertheme[blog] about how to apply a theme to the Keycloak docker image.