diff --git a/css/website.css b/css/website.css index b5f2bd307..f1cc3d512 100644 --- a/css/website.css +++ b/css/website.css @@ -5134,12 +5134,6 @@ a { .hidden { display: none !important; } -.byline { - font-family: 'Muli', sans-serif; - font-size: 28px; - opacity: 0.5; - margin-bottom: 2em; } - #about p { opacity: 0.9; } @@ -5247,19 +5241,26 @@ section h4 { .brand-heading { display: inline-flex; - align-items: flex-end; + align-items: center; font-family: 'Baumans', cursive; font-size: 6em; margin-top: 1em; - margin-bottom: 0; + margin-bottom: 0.5em; color: white; } + .brand-heading .byline { + font-family: 'Muli', sans-serif; + font-size: 20px; + opacity: 0.5; + margin-bottom: 2em; + margin-left: -75px; } .brand-heading .subdued { opacity: 0.15; font-size: 95%; word-spacing: 50px; } .brand-heading .converse-svg-logo { height: 1.2em; - margin-right: 0.25em; } + margin-right: 0.25em; + margin-bottom: 0.1em; } .brand-heading .converse-svg-logo .cls-1 { isolation: isolate; } .brand-heading .converse-svg-logo .cls-2 { @@ -5270,6 +5271,12 @@ section h4 { .brand-heading .converse-svg-logo .cls-4 { fill: white; } +.brand-heading__text { + font-size: 0.9em; + display: inline-flex; + flex-direction: column; + justify-content: center; } + .brand-heading-embedded { margin-top: 1.5em; } @@ -5277,6 +5284,12 @@ section h4 { .intro { padding: 0; } } +.intro-text { + font-size: 1.1em; + opacity: 0.8; + margin-bottom: 0; + padding-bottom: 1em; } + .btn-circle { width: 70px; height: 70px; diff --git a/index.html b/index.html index 130cddb6e..c6eebe285 100644 --- a/index.html +++ b/index.html @@ -89,11 +89,15 @@ - converse.js -

messaging freedom

+ + converse.js +

messaging freedom

+
+ +

A free and open-source XMPP chat client in your browser

-

Try the fullpage version

-

+

Try the fullpage version

+

diff --git a/sass/website.scss b/sass/website.scss index 9ff888a07..aa747d700 100644 --- a/sass/website.scss +++ b/sass/website.scss @@ -97,13 +97,6 @@ a { display: none !important; } -.byline { - font-family: 'Muli', sans-serif; - font-size: 28px; - opacity: 0.5; - margin-bottom: 2em; -} - #about { p { opacity: 0.9; @@ -236,13 +229,21 @@ section { .brand-heading { display: inline-flex; - align-items: flex-end; + align-items: center; font-family: 'Baumans', cursive; font-size: 6em; margin-top: 1em; - margin-bottom: 0; + margin-bottom: 0.5em; color: white; + .byline { + font-family: 'Muli', sans-serif; + font-size: 20px; + opacity: 0.5; + margin-bottom: 2em; + margin-left: -75px; + } + .subdued { opacity: 0.15; font-size: 95%; @@ -252,6 +253,7 @@ section { .converse-svg-logo { height: 1.2em; margin-right: 0.25em; + margin-bottom: 0.1em; .cls-1 { isolation: isolate; } @@ -268,6 +270,13 @@ section { } } +.brand-heading__text { + font-size: 0.9em; + display: inline-flex; + flex-direction: column; + justify-content: center; +} + .brand-heading-embedded { margin-top: 1.5em; } @@ -276,6 +285,14 @@ section { padding: 0; } } + +.intro-text { + font-size: 1.1em; + opacity: 0.8; + margin-bottom: 0; + padding-bottom: 1em; +} + .btn-circle { width: 70px; height: 70px;