diff --git a/customize.dist/images/cover-faq.jpg b/customize.dist/images/cover-faq.jpg deleted file mode 100644 index 27be3af99..000000000 Binary files a/customize.dist/images/cover-faq.jpg and /dev/null differ diff --git a/customize.dist/images/cover-privacy.jpg b/customize.dist/images/cover-privacy.jpg deleted file mode 100644 index ff873c99d..000000000 Binary files a/customize.dist/images/cover-privacy.jpg and /dev/null differ diff --git a/customize.dist/pages/privacy.js b/customize.dist/pages/privacy.js index d5d3114c6..84a43ad3f 100644 --- a/customize.dist/pages/privacy.js +++ b/customize.dist/pages/privacy.js @@ -6,35 +6,25 @@ define([ return function () { return h('div#cp-main', [ Pages.infopageTopbar(), - h('.container-fluid.cp-privacy-top', [ - h('div.container',[ - h('center', h('h1', Msg.policy_title)), - ]), - ]), h('div.container.cp-container.cp-privacy',[ - h('h3', Msg.policy_whatweknow), - h('hr'), + h('div.row.cp-page-title', h('h1', Msg.policy_title)), + h('h2', Msg.policy_whatweknow), Pages.setHTML(h('p'), Msg.policy_whatweknow_p1), - h('h3', Msg.policy_howweuse), - h('hr'), + h('h2', Msg.policy_howweuse), h('p', Msg.policy_howweuse_p1), h('p', Msg.policy_howweuse_p2), - h('h3', Msg.policy_whatwetell), - h('hr'), + h('h2', Msg.policy_whatwetell), h('p', Msg.policy_whatwetell_p1), - h('h3', Msg.policy_links), - h('hr'), + h('h2', Msg.policy_links), h('p', Msg.policy_links_p1), - h('h3', Msg.policy_ads), - h('hr'), + h('h2', Msg.policy_ads), h('p', Msg.policy_ads_p1), - h('h3', Msg.policy_choices), - h('hr'), + h('h2', Msg.policy_choices), h('p', Msg.policy_choices_open), Pages.setHTML(h('p'), Msg.policy_choices_vpn), ]), diff --git a/customize.dist/pages/terms.js b/customize.dist/pages/terms.js index e00a235d7..e93b43a0b 100644 --- a/customize.dist/pages/terms.js +++ b/customize.dist/pages/terms.js @@ -7,12 +7,14 @@ define([ return h('div#cp-main', [ Pages.infopageTopbar(), h('div.container.cp-container', [ - h('center', h('h1', Msg.tos_title)), - h('p', Msg.tos_legal), - h('p', Msg.tos_availability), - h('p', Msg.tos_e2ee), - h('p', Msg.tos_logs), - h('p', Msg.tos_3rdparties), + h('.row.cp-page-title', h('h1', Msg.tos_title)), + h('.row', [ + h('p', Msg.tos_legal), + h('p', Msg.tos_availability), + h('p', Msg.tos_e2ee), + h('p', Msg.tos_logs), + h('p', Msg.tos_3rdparties), + ]) ]), Pages.infopageFooter() ]); diff --git a/customize.dist/src/less2/pages/page-privacy.less b/customize.dist/src/less2/pages/page-privacy.less index 4e681ec70..30f979859 100644 --- a/customize.dist/src/less2/pages/page-privacy.less +++ b/customize.dist/src/less2/pages/page-privacy.less @@ -4,44 +4,5 @@ &.cp-page-privacy { .infopages_main(); - #cp-main { - background: #fff; - } - .cp-privacy-top { - padding-top: 3em; - padding-bottom: 3em; - background-image: url(/customize/images/cover-privacy.jpg); - background-size: cover; - background-repeat: no-repeat; - background-position: center; - .container { - color: #fff; - font-family: "Open Sans"; - h1 { - font-weight: 700; - } - a { - color: #fff; - text-decoration: underline; - } - p { - padding-top: 1em; - } - } - } - .cp-privacy { - hr { - margin-left: 0; - width: 15rem; - border-top: 2px solid #4591C4; - } - h3 { - color: #1E1F1F; - font-weight: 700; - } - p { - color: #3F4141; - } - } }