fix(keycloak): added missing styles to login
parent
442db4077b
commit
3391e00cc3
|
@ -18,6 +18,22 @@
|
||||||
url('../fonts/Fengardoneue/fengardoneue_black.svg#svgFontName') format('svg'); /* Legacy iOS */
|
url('../fonts/Fengardoneue/fengardoneue_black.svg#svgFontName') format('svg'); /* Legacy iOS */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'PFHandbookProRegular';
|
||||||
|
src: url('../fonts/handbook/PFHandbookPro-Regular.otf');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'PFHandbookProMedium';
|
||||||
|
src: url('../fonts/handbook/PFHandbookPro-Medium.otf');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'PFHandbookProLight';
|
||||||
|
src: url('../fonts/handbook/PFHandbookPro-Light.otf');
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color:#0db4c7;
|
color:#0db4c7;
|
||||||
text-decoration:none
|
text-decoration:none
|
||||||
|
@ -192,6 +208,7 @@ body {
|
||||||
border: 1px solid rgba(0,0,0,.125);
|
border: 1px solid rgba(0,0,0,.125);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
margin: 20px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control {
|
.form-control {
|
||||||
|
@ -266,10 +283,12 @@ body {
|
||||||
|
|
||||||
footer#page-footer {
|
footer#page-footer {
|
||||||
background-color: white!important;
|
background-color: white!important;
|
||||||
height: 64px;
|
padding: 50px;
|
||||||
border-top: 1px solid #262626;
|
border-top: 1px solid #262626;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
font-family: 'PFHandbookProRegular';
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer#page-footer .container2 {
|
footer#page-footer .container2 {
|
||||||
|
@ -278,8 +297,100 @@ footer#page-footer .container2 {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
color: #343a40;
|
color: #343a40;
|
||||||
|
max-width: 1280px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer#page-footer .container2 a {
|
footer#page-footer .container2 a {
|
||||||
color: #343a40;
|
color: #343a40;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer img.footer-desc-logo-img {
|
||||||
|
height: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer img.footer-desc-img {
|
||||||
|
height: 53px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer .footer-desc-text {
|
||||||
|
margin-left: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer p.footer-desc-par {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 15px;
|
||||||
|
margin-top: 10px;
|
||||||
|
color: #707070;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer .footer-desc {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer .footer-desc-comma {
|
||||||
|
display: flex;
|
||||||
|
justify-content: unset;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer img.footer-desc-logo-comma {
|
||||||
|
position: relative;
|
||||||
|
height: 35px;
|
||||||
|
width: 35px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer .footer-links {
|
||||||
|
font-family: 'PFHandbookProMedium';
|
||||||
|
font-size: 20px;
|
||||||
|
margin-left: 30px;
|
||||||
|
min-width: 450px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer img.footer-desc-logo-comma-bullet {
|
||||||
|
margin-right: 10px;
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer .footer-links-policies {
|
||||||
|
font-family: 'PFHandbookProLight';
|
||||||
|
padding-left: 23px;
|
||||||
|
padding-top: 14px;
|
||||||
|
color: #AEAEAE !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer#page-footer .footer-links-policies a {
|
||||||
|
color: #AEAEAE !important;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1280px) {
|
||||||
|
footer#page-footer .container2 {
|
||||||
|
flex-direction: column;
|
||||||
|
max-width: inherit;
|
||||||
|
}
|
||||||
|
footer#page-footer .footer-links {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
.login-pf-page .card-pf {
|
||||||
|
margin: 0;
|
||||||
|
min-width: inherit;
|
||||||
|
}
|
||||||
|
.footer-links-item {
|
||||||
|
margin: 0 55px;
|
||||||
|
}
|
||||||
|
footer#page-footer img.footer-desc-logo-img {
|
||||||
|
height: 80px;
|
||||||
|
}
|
||||||
|
footer#page-footer .footer-links-policies {
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
margin-top: 20px;
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
Binary file not shown.
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 29 KiB |
|
@ -149,10 +149,31 @@
|
||||||
</div>
|
</div>
|
||||||
<footer id="page-footer">
|
<footer id="page-footer">
|
||||||
<div class="container2">
|
<div class="container2">
|
||||||
<div class="politics">
|
<div class="footer-desc">
|
||||||
<a href="#">Resum de retenció de dades</a>
|
<div class="footer-desc-logo">
|
||||||
<span class="pipe">|</span>
|
<img class="footer-desc-logo-img" src="${url.resourcesPath}/img/logo_icon.svg" style=""/>
|
||||||
<a href="#">Polítiques de privacitat</a>
|
</div>
|
||||||
|
<div class="footer-desc-text">
|
||||||
|
<img class="footer-desc-img" src="${url.resourcesPath}/img/logo_text_dd.svg" style=""/>
|
||||||
|
<p class="footer-desc-par">DD és el workspace educatiu generat en el marc del Pla de Digitalització Democràtica d’Xnet. Ha estat creat i powered per Xnet, famílies i centres promotors, IsardVDI, 3iPunt, Direcció d’Innovació Democràtica, Direcció d’Innovació Digital, Comissionat d’Economia Social de l’Ajuntament de Barcelona, Consorci d’Educació de Barcelona. En col·laboració amb aFFaC i AirVPN.</p>
|
||||||
|
</div>
|
||||||
|
<div class="footer-desc-comma">
|
||||||
|
<img class="footer-desc-logo-comma" src="${url.resourcesPath}/img/dd_coma.svg" style=""/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer-links">
|
||||||
|
<div class="footer-links-item">
|
||||||
|
<img class="footer-desc-logo-comma-bullet" src="${url.resourcesPath}/img/dd_coma.svg" width="10"><a href="https://www.gnu.org/licenses/agpl-3.0.en.html" target="_blank">L’eina DD té una llicència AGPLv3</a>
|
||||||
|
</div>
|
||||||
|
<div class="footer-links-item">
|
||||||
|
<img class="footer-desc-logo-comma-bullet" src="${url.resourcesPath}/img/dd_coma.svg" width="10"/><a href="https://gitlab.com/digitaldemocratic/digitaldemocratic" target="_blank">Repositori DD a GitLab</a>
|
||||||
|
</div>
|
||||||
|
<div class="footer-links-item">
|
||||||
|
<img class="footer-desc-logo-comma-bullet" src="${url.resourcesPath}/img/dd_coma.svg" width="10"/><a href="https://xnet-x.net/ca/digital-democratic/" target="_blank">Web Pla de Digitalització Democràtica</a>
|
||||||
|
</div>
|
||||||
|
<div class="footer-links-policies">
|
||||||
|
<a href="https://api.digitaldemocratic.net/legal?lang=es" target="_blank">Avís legal del centre</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Loading…
Reference in New Issue