2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00

index, update intro section

This commit is contained in:
Hendrik Niefeld 2020-02-01 21:47:08 +01:00
parent 0608034bba
commit f9c1219a4e
4 changed files with 50 additions and 13 deletions

View File

@ -129,6 +129,12 @@ ul {
.tracked-min { .tracked-min {
letter-spacing: .03em; letter-spacing: .03em;
} }
.intro-margin-a {
margin-top: 0.3rem;
}
.intro-margin-b {
margin-top: 0.7rem;
}
/* --------------------------------------------------- /* ---------------------------------------------------
@ -319,8 +325,34 @@ IMAGES
GRAPHICS GRAPHICS
----------------------------------------------------*/ ----------------------------------------------------*/
#bg-intro { #bg-intro {
background: url(/theme/images/gfx-intro.svg) no-repeat center; background: url(/theme/images/gfx-intro.svg);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 200px 130px;
} }
/*
@media only screen and (min-width: 45.1em) and (max-width: 60em) {
#bg-intro {
background-position: 180px 130px;
}
}
@media only screen and (min-width: 30.1em) and (max-width: 45em) {
#bg-intro {
background-position: 140px 130px;
}
}
*/
@media only screen and (min-width: 30.1em) and (max-width: 60em) {
#bg-intro {
background-position: calc(20% + 120px) 130px;
}
}
@media only screen and (max-width: 30em) {
#bg-intro {
background-position: 10px 60px;
}
}
#bg-feature { #bg-feature {
background: url(/theme/images/gfx-pattern-mint-bright.svg) center; background: url(/theme/images/gfx-pattern-mint-bright.svg) center;
} }

View File

@ -128,13 +128,13 @@
<p class="ma0">for everyone</p> <p class="ma0">for everyone</p>
</div> </div>
<div class="w-25-l mt3 mr3"> <div class="w-25-l mt3 mr3">
{% if is_getstarted != 'true' %}
<p class="ma0"> <p class="ma0">
<a class="link b dim gray" href="mailto:{{ CONTACT_EMAIL }}">{{CONTACT_EMAIL}}</a> <a class="link b dim gray" href="mailto:{{ CONTACT_EMAIL }}">{{CONTACT_EMAIL}}</a>
</p> </p>
<p class="ma0"> <p class="ma0">
<a class="link b dim gray" target="_blank" href="/theme/{{ GPG_KEY_FILE }}">GPG Key</a> <a class="link b dim gray" target="_blank" href="/theme/{{ GPG_KEY_FILE }}">GPG Key</a>
</p> </p>
{% if is_getstarted != 'true' %}
<p class="ma0 mt2"> <p class="ma0 mt2">
<a class="link b dim gray" href="{{ GITHUB_ORG }}" rel="noopener" target="_blank">GitHub</a> <a class="link b dim gray" href="{{ GITHUB_ORG }}" rel="noopener" target="_blank">GitHub</a>
</p> </p>

View File

@ -18,9 +18,9 @@
<p class="tc lh-title tracked-min ma0 mt3-ns mb2 white"> <p class="tc lh-title tracked-min ma0 mt3-ns mb2 white">
Single binary file for <br>Linux, Windows or MacOS Single binary file for <br>Linux, Windows or MacOS
</p> </p>
<a class="w-100 tc b link dim ph4 pv2 dib b--solid bw2 brd-cclr-mid-black mb2 fnt-cclr-mid-black" href="#">Download</a> <a class="w-100 tc b link dim ph4 pv2 dib b--solid bw2 brd-cclr-mid-black mb2 fnt-cclr-mid-black" href="#" rel="noopener">Download</a>
<div class="tc"> <div class="tc">
<a class="w-100 tracked-min b link dim mb3 fnt-cclr-mint-bright" href="#">Open GitHub release page</a> <a class="w-100 tracked-min b link dim mb3 fnt-cclr-mint-bright" href="#" rel="noopener">Open GitHub release page</a>
</div> </div>
</div> </div>
</div> </div>
@ -43,7 +43,7 @@
<p class="tc lh-title tracked-min ma0 mt3-ns mb2 white"> <p class="tc lh-title tracked-min ma0 mt3-ns mb2 white">
Details on how to run, use <br>and develop Offen Details on how to run, use <br>and develop Offen
</p> </p>
<a class="w-100 tc b link dim ph4 pv2 dib b--solid bw2 brd-cclr-mid-black mb3 fnt-cclr-mid-black" href="#">Open guides</a> <a class="w-100 tc b link dim ph4 pv2 dib b--solid bw2 brd-cclr-mid-black mb3 fnt-cclr-mid-black" href="#" rel="noopener">Open guides</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -3,14 +3,19 @@
{% block content %} {% block content %}
<div class="w-100 mt5-ns cclr-mid-yellow"> <div class="w-100 mt5-ns cclr-mid-yellow">
<div class="mw8 center" id="bg-intro"> <div class="mw8 center" id="bg-intro">
<div class="flex flex-wrap pt6-ns pt-3 ph4"> <div class="flex justify-center pt6-ns pt5 ph4">
<div class="mw5 pr4 pb3"> <div class="dn db-ns w-20 tr pr3 pb3">
<img src="/theme/images/offen-icon-white.svg" alt="Offen logo" width="146" height="90"> <img src="/theme/images/offen-icon-white.svg" alt="Offen logo" width="58" height="63">
</div> </div>
<div class="mw6"> <div class="w-100 w-80-ns">
<h1 class="f1-ns f2 normal lh-solid ma0 mb1 white"> <div class="flex">
Offen <div class="db dn-ns intro-margin-a mr2">
</h1> <img src="/theme/images/offen-icon-white.svg" alt="Offen logo" width="40" height="43">
</div>
<h1 class="f1-ns f2 normal lh-solid ma0 mb1 intro-margin-b white">
Offen
</h1>
</div>
<h1 class="f1-ns f2 normal lh-solid ma0 mb3"> <h1 class="f1-ns f2 normal lh-solid ma0 mb3">
Transparent <span>web analytics</span> Transparent <span>web analytics</span>
</h1> </h1>
@ -18,7 +23,7 @@
Offen is an open source analytics software for websites <span>and web applications. It allows respectful handling of data </span> <span>for operators and users.</span> Offen is an open source analytics software for websites <span>and web applications. It allows respectful handling of data </span> <span>for operators and users.</span>
</p> </p>
<div class="pb6"> <div class="pb6">
<a class="b link dim ph4 pv2 dib b--solid bw2 brd-cclr-mid-black fnt-cclr-mid-black" href="{{GITHUB_ORG}}" rel="noopener" target="_blank">Get involved</a> <a class="b link dim ph4 pv2 dib b--solid bw2 brd-cclr-mid-black fnt-cclr-mid-black" href="#" rel="noopener" target="_blank">Start now</a>
</div> </div>
</div> </div>
</div> </div>