CSS: spacing of logo and byline on fullpage login form

This commit is contained in:
JC Brand 2019-01-11 09:16:35 +01:00
parent dc07440de8
commit ec14a31908
2 changed files with 18 additions and 19 deletions

View File

@ -9610,14 +9610,6 @@ body.converse-fullscreen {
#conversejs .brand-heading .brand-name__text { #conversejs .brand-heading .brand-name__text {
font-size: 120%; font-size: 120%;
vertical-align: text-bottom; } vertical-align: text-bottom; }
#conversejs .brand-heading .byline {
margin: 0;
font-family: var(--heading-font);
font-size: 0.25em;
opacity: 0.55;
margin-left: -4em;
word-spacing: 5px;
margin-top: -15px; }
#conversejs .brand-heading .converse-svg-logo { #conversejs .brand-heading .converse-svg-logo {
color: var(--link-color); color: var(--link-color);
height: 1.5em; height: 1.5em;
@ -9633,7 +9625,15 @@ body.converse-fullscreen {
#conversejs .brand-heading .converse-svg-logo .cls-4 { #conversejs .brand-heading .converse-svg-logo .cls-4 {
fill: var(--link-color); } fill: var(--link-color); }
#conversejs .brand-heading--inverse .converse-svg-logo { #conversejs .brand-heading--inverse .converse-svg-logo {
margin-bottom: 0em; } margin-bottom: 0em;
margin-top: -0.2em; }
#conversejs .brand-heading--inverse .byline {
margin: 0;
font-family: var(--heading-font);
font-size: 0.25em;
opacity: 0.55;
margin-left: -7em;
word-spacing: 5px; }
#conversejs .popover { #conversejs .popover {
position: fixed; } position: fixed; }
#conversejs .converse-chatboxes { #conversejs .converse-chatboxes {

View File

@ -146,16 +146,6 @@ body.converse-fullscreen {
vertical-align: text-bottom; vertical-align: text-bottom;
} }
.byline {
margin: 0;
font-family: var(--heading-font);
font-size: 0.25em;
opacity: 0.55;
margin-left: -4em;
word-spacing: 5px;
margin-top: -15px;
}
.converse-svg-logo { .converse-svg-logo {
color: var(--link-color); color: var(--link-color);
height: 1.5em; height: 1.5em;
@ -180,6 +170,15 @@ body.converse-fullscreen {
.brand-heading--inverse { .brand-heading--inverse {
.converse-svg-logo { .converse-svg-logo {
margin-bottom: 0em; margin-bottom: 0em;
margin-top: -0.2em;
}
.byline {
margin: 0;
font-family: var(--heading-font);
font-size: 0.25em;
opacity: 0.55;
margin-left: -7em;
word-spacing: 5px;
} }
} }