3
0

amalati theme added

This commit is contained in:
Idrees Jawadwala 2022-04-28 17:12:48 +05:30
parent 98358e2a18
commit 8820d79f0a
7 changed files with 88 additions and 0 deletions

9
.idea/login_themes.iml generated Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

9
.idea/markdown.xml generated Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MarkdownSettings">
<enabledExtensions>
<entry key="MermaidLanguageExtension" value="false" />
<entry key="PlantUMLLanguageExtension" value="false" />
</enabledExtensions>
</component>
</project>

8
.idea/modules.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/login_themes.iml" filepath="$PROJECT_DIR$/.idea/login_themes.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

BIN
amalati/background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

View File

@ -0,0 +1,49 @@
.login-pf body {
background: url(background.png) !important;
background-size: cover !important;
}
.login-pf-page .login-pf-header h1 {
background: #618c36 !important;
}
.pf-c-button.pf-m-primary {
background: #618c36 !important;
}
div#kc-registration span a:hover {
background: #83b451;
}
#kc-header {
background: #ffffff;
}
.app-logo {
background-image: url(logo.png);
background-size: 100%;
background-repeat: no-repeat;
}
.login-pf-page .login-pf-page-header p::before {
content: "Create infinitely nested trees and turn your plans and vision into managed work.";
}
.login-main-title::before {
content: "Login";
}
.login-sub-heading::before {
content: "Create, tend and grow your trees of wonder and promise.";
}
#new-to-app::before {
content: "New to amalati?";
}
.register-main-title::before {
content: "Create your account";
}
.register-sub-heading::before {
content: "Join and start planting your trees in Amalati!";
}

7
amalati/theme.js Normal file
View File

@ -0,0 +1,7 @@
document.onload = function () {
const privacyPolicy = document.getElementById('privacy-policy');
if (privacyPolicy) {
privacyPolicy.innerHTML = '<span>By signing up you agree to the TheGardenPrivacy Policy <a href="https://thegarden.rocks/privacy/">Privacy Policy</a></span>'
}
}