livrare lot 2
This commit is contained in:
commit
8ecc78e729
763 changed files with 164593 additions and 0 deletions
|
|
@ -0,0 +1,148 @@
|
|||
/* Custom theme for didi - AI Platform */
|
||||
|
||||
/* Remove the black striped background */
|
||||
body,
|
||||
.login-pf body,
|
||||
.login-pf-page {
|
||||
background: #FFFFFF !important;
|
||||
background-image: none !important;
|
||||
}
|
||||
|
||||
/* Hide elements we don't want */
|
||||
#kc-header,
|
||||
#kc-header-wrapper,
|
||||
.alert-info {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Center the entire login container */
|
||||
.login-pf-page {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Style the card container */
|
||||
.card-pf {
|
||||
background: #FFFFFF !important;
|
||||
border-radius: 12px !important;
|
||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
|
||||
padding: 48px !important;
|
||||
max-width: 400px !important;
|
||||
width: 100% !important;
|
||||
margin: 20px !important;
|
||||
}
|
||||
|
||||
/* Style the login box */
|
||||
#kc-content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Form styling */
|
||||
#kc-form {
|
||||
text-align: left;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
/* Input fields */
|
||||
.pf-c-form-control,
|
||||
input[type="text"],
|
||||
input[type="password"] {
|
||||
width: 100% !important;
|
||||
padding: 12px 16px !important;
|
||||
border: 1px solid #E5E7EB !important;
|
||||
border-radius: 6px !important;
|
||||
font-size: 16px !important;
|
||||
margin-top: 8px !important;
|
||||
}
|
||||
|
||||
.pf-c-form-control:focus,
|
||||
input[type="text"]:focus,
|
||||
input[type="password"]:focus {
|
||||
border-color: #0052CC !important;
|
||||
outline: none !important;
|
||||
box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1) !important;
|
||||
}
|
||||
|
||||
/* Labels */
|
||||
label {
|
||||
color: #374151 !important;
|
||||
font-weight: 500 !important;
|
||||
font-size: 14px !important;
|
||||
display: block !important;
|
||||
margin-bottom: 4px !important;
|
||||
}
|
||||
|
||||
/* Form groups spacing */
|
||||
.form-group {
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
|
||||
/* Add logo before title */
|
||||
#kc-page-title::before {
|
||||
content: '';
|
||||
display: block;
|
||||
background-image: url('../img/logo.png');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
|
||||
/* Add subtitle after title */
|
||||
#kc-page-title::after {
|
||||
content: 'didi - AI Platform';
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
color: #6B7280;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
/* Style the submit button */
|
||||
#kc-login {
|
||||
background: #0052CC !important;
|
||||
border: none !important;
|
||||
width: 100% !important;
|
||||
padding: 12px 24px !important;
|
||||
border-radius: 6px !important;
|
||||
font-size: 16px !important;
|
||||
font-weight: 500 !important;
|
||||
margin-top: 24px !important;
|
||||
transition: all 0.2s !important;
|
||||
}
|
||||
|
||||
#kc-login:hover {
|
||||
background: #003d99 !important;
|
||||
transform: translateY(-1px) !important;
|
||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
|
||||
}
|
||||
|
||||
/* Checkbox styling */
|
||||
.checkbox {
|
||||
margin: 16px 0 !important;
|
||||
}
|
||||
|
||||
.checkbox label {
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
|
||||
/* Links below form */
|
||||
#kc-registration,
|
||||
#kc-passwd-reset-wrapper {
|
||||
margin-top: 24px !important;
|
||||
}
|
||||
|
||||
#kc-registration a,
|
||||
#kc-passwd-reset-wrapper a {
|
||||
color: #0052CC !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
#kc-registration a:hover,
|
||||
#kc-passwd-reset-wrapper a:hover {
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -0,0 +1,9 @@
|
|||
# Inherit from keycloak to get templates
|
||||
parent=keycloak
|
||||
|
||||
# Override styles
|
||||
styles=css/login.css
|
||||
|
||||
# Messages
|
||||
displayName=Misinformation Analysis Platform
|
||||
displayNameHtml=<strong>Misinformation Analysis Platform</strong>
|
||||
Loading…
Add table
Add a link
Reference in a new issue