Skip to content

Commit

Permalink
style: adjust styling of login flow
Browse files Browse the repository at this point in the history
Signed-off-by: Franziska Bath <[email protected]>
  • Loading branch information
fracado committed Dec 18, 2024
1 parent 6047d15 commit 8247458
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions core/css/guest.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,82 @@
@import url('./server.css');

body#body-login {
background-color: var(--ion-color-main-background);
font-family: var(--font-face);

header#ionos-global-nav {
display: flex;
justify-content: center;

::part(ion-global-nav) {
box-shadow: none;
margin: 70px 0 -50px;
transform: scale(1.8);

@media only screen and (max-width: 1199px) {
margin: 10px 0 -10px;
transform: none;
}
}
}

header #header .logo {
display: none;
}

footer.guest-box {
display: none;
}

div.picker-window {
h2 {
font-size: 32px;
margin-bottom: 48px;
}

p.info {
font-size: 18px;
padding: 0 48px;
}

div.notecard.warning {
background-color: var(--ion-color-main-background);
border: 2px solid var(--ion-color-amber-y5);
border-radius: 16px;
font-size: 14px;
margin: 24px 48px;
padding: 24px;

h3 {
color: var(--ion-color-amber-y6);
font-size: 16px;
font-weight: 600;
}
}

form input[type="submit"] {
background-color: var(--ion-color-blue-b7);
background-image: none;
border-radius: 30px;
margin-bottom: 14px;
font-size: 14px;
font-weight: 600;
}

a#app-token-login {
font-size: 14px;
font-weight: 600;
}
}

div.picker-window.small {
h2 {
margin-bottom: 56px;
}

form div#submit-wrapper {
margin-top: 24px;
margin-bottom: 12px;
}
}
}

0 comments on commit 8247458

Please sign in to comment.